+ 1
What is the Difference between short int and int and log int (in programmig c)? Plz give me a example. Thanks..
1 Answer
+ 4
The size required to be allocated. short is typically 2 bytes, long is 4 bytes, and int is either 2 or 4. Sorry, but no example I can think of can demonstrate how much space is assigned.