fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int marks[5] = {67,89,34,10,99};
  5. for(int i=0;i<5;i++)
  6.  
  7. printf("%d ",marks[i]);
  8.  
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5316KB
stdin
0
1
2
3
4
stdout
67 89 34 10 99