[ create a new paste ] login | about

Link: http://codepad.org/7idBdy2e    [ raw code | output | fork ]

kamarakay2000 - C, pasted on Jul 8:
1
2
3
4
5
6
7
8
#include <stdio.h>
int main()
{
   int x;
   for(x = 0;x <100;x=x+5)
      printf("%d\n",x);
   return(0);
}


Output:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
0
5
10
15
20
25
30
35
40
45
50
55
60
65
70
75
80
85
90
95


Create a new paste based on this one


Comments: