Question: Write a short little C program called charsize.c shown below: #include int main ( void ) { printf ( The size of a char is:

Write a short little C program called charsize.c shown below:
#include
int main( void ){
printf(The size of a char is: %zd
, sizeof( char ));
printf(The size of a is: %zd
, sizeof(a));
return 0;
}
Then compile simply as (and then run it):
gcc -o charsize charsize.c
Questions:
a. What is the size of the char type?
b. What is the size of the character literal?
c. Are you surprised at the results? (Please thoughtfully elaborate).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!