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