Computer Science, asked by vijaykumar29104, 7 months ago

char.a='A'
size of (a)=​

Answers

Answered by sharifshabisanha
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