Programming Reference/Librarys
Question & Answer
Q&A is closed
short 2 Byte signed: -32768 - 32767 unsigned: 0 - 65535
#include <stdio.h> /* including standard library */ //#include <windows.h> /* uncomment this for Windows */ int main(void) { printf("short: %d bytes\n", sizeof(short) ); return 0; }