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