fork download
  1. #include <stdio.h>
  2. int main (void)
  3. {
  4. int x, y = 1, z[19];
  5. unsigned long long int p;
  6. for (x = 0, y; x <= 20; ++x, ++y)
  7. {
  8. z[x] = y;
  9. }
  10. for (x = 0; x <= 19; ++x)
  11. {
  12. printf ("%d\n", z[x]);
  13. }
  14. return 0;
  15.  
  16. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20