[ create a new paste ] login | about

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

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

int main() {

	int k;
	printf("small program. insert a number: ");
	scanf("%d",&k);
	printf("\nyour number is: %d\n", k);

	return 0;
}


Output:
1
2
small program. insert a number: 
your number is: 134513565


Create a new paste based on this one


Comments: