C - Variables and Data Types
The following code tries to print the size of a
What is the main reason for the error?
short variable but causes a compilation error:short s;
printf("%d", sizeof(s));
What is the main reason for the error?
