What is the output of the following code fragment ?
#include
int main()
{
char ch;
printf(“%d”, sizeof(ch));
return 0;
}
1
0
2
1
3
2
4
4
What is the output of the following code fragment ?
#include
int main()
{
char ch;
printf(“%d”, sizeof(ch));
return 0;
}