[ create a new paste ] login | about

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

nel - C, pasted on Feb 21:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

int main(void)
{
	int i = 0;

	do {
		printf("%d ", i);
		i++;
	} while(i<10);

	return 0;
}


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


Create a new paste based on this one


Comments: