File: size.c

package info (click to toggle)
cttex 1.22-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,804 kB
  • ctags: 133
  • sloc: ansic: 2,299; makefile: 53; perl: 21
file content (7 lines) | stat: -rw-r--r-- 95 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#include <stdio.h>

main()
{
  printf("%d\n", sizeof(short));
  printf("%d\n", sizeof(int));
}