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