Why the sizeof character constant is 4 bytes?

3.9k Views Asked by At

The program below produces

output - 1 4 4

#include<stdio.h>
void main()
{
    char ch;
    ch='A'; 
    printf("%d %d %d\n",sizeof(ch),sizeof('A'),sizeof(3.2f));

}

Why is the size of character constant is 4 bytes ?

2

There are 2 best solutions below

4
On

Because according to the C standard the type of a character constant is int, and not char.

So in effect, this is the sizeof(int) on your platform.

7
On

ch is char type so 1 byte.

'A' is int type so 4 bytes. Because in C the character constant is an int type.

Last is float value so 4 bytes.

These values according to the machine you are using.

Edit -

The range of int and float depends on the machine you are using, 16 bit int is as common as 32 bit int.