[ create a new paste ] login | about

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

C, pasted on Nov 9:
1
2
3
4
5
6
7
8
9
10
#include<stdio.h>

int main()
{
 int a;
 for(a=1;a<=10;a++){
 printf("%d\n",a);}

 return 0;
}


Output:
1
2
3
4
5
6
7
8
9
10
1
2
3
4
5
6
7
8
9
10


Create a new paste based on this one


Comments: