/* * shortint.c - 32768 to -32768, but Unsigned can go to 65535 */ #include int main(void) { short int xx,yy; xx=5000; yy=50000; printf(" The fist number assigned to memory is %u\n", xx); printf(" The second number assigned to memory is %u\n", yy); return 0; }