{{keywords>wiki library source code example reference}} ===== short ===== short 2 Byte signed: -32768 - 32767 unsigned: 0 - 65535 ===== C Sourcecode Example ===== #include /* including standard library */ //#include /* uncomment this for Windows */ int main(void) { printf("short: %d bytes\n", sizeof(short) ); return 0; }