fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int i;
  5. int a[3]={2,9,8,7};
  6.  
  7. for(i=0; i<3; i=i+1) {
  8. printf("%d\n", a[i]);
  9. }
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5332KB
stdin
Standard input is empty
stdout
2
9
8