// short, long, printf<br>แสดงการพิมพ์เลข double ได้สูงถึง 2147483647
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <conio.h>
void main()
{
short i;
i = 32767;
printf(
"number = [%1d]\n"
,i);
// [32767]
long j;
j = 2147483647;
"number = [%ld]\n"
,j);
// [2147483647]
getch();
}