Files
bash/CWRU/misc/iptrt.c
T
2011-12-03 12:52:47 -05:00

13 lines
187 B
C

#include <stdio.h>
main()
{
if (sizeof(char *) == sizeof(long))
printf("long\n");
else if (sizeof(char *) == sizeof(short))
printf("short\n");
else
printf("int\n");
exit(0);
}