[ create a new paste ] login | about

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

C, pasted on Mar 18:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <time.h>

int main()
{
	int i = 0;
	for(; i < 10; i++)
		printf("%u\n",time(NULL));
	printf("Press any key to continue\n");
	getchar();
	return 0;
}


Output:
1
2
3
4
5
6
7
8
9
10
11
1332052507
1332052507
1332052507
1332052507
1332052507
1332052507
1332052507
1332052507
1332052507
1332052507
Press any key to continue


Create a new paste based on this one


Comments: