fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int marks[]= {40,50,60,70,80};
  6. for(int i=0;i<5;i++){
  7. printf("%d",marks[i]);
  8. }
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
4050607080