// int, scanf, d<br>แสดงการรับ และแสดงผลค่าจากแป้นพิมพ์
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <conio.h>
void main()
{
int i;
printf(
"Put integer :"
);
scanf (
"%d"
,&i);
"\nYou put %d"
,i);
getch();
}