Answers for "how to check the size of a char in c__"

C
4

c print sizeof char

char b = 'b';
printf("the size of b is %d",sizeof(b));
Posted by: Guest on December-25-2020

Code answers related to "how to check the size of a char in c__"

Code answers related to "C"

Browse Popular Code Answers by Language