char.a='A'
size of (a)=
Answers
Answered by
0
Answer:
In C the type of character literal is integer (int). So in C, the size of ('a') is 4 for 32bit architecture, and CHAR_BIT is 8. But the size of (char) is one byte for both C and C++.
Explanation:
Similar questions