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
printfThe size of a char is: zd
sizeof char ;
printfThe size of a is: zd
sizeofa;
return ;
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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
