main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
Answer Posted / molugu.ashwin
out put 4 2 4
| Is This Answer Correct ? | 16 Yes | 17 No |
Post New Answer View All Answers
What is %lu in c?
swap 2 numbers without using third variable?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
what are bit fields? What is the use of bit fields in a structure declaration?
Can we declare variable anywhere in c?
Which is an example of a structural homology?
What are the different types of errors?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is the difference between a free-standing and a hosted environment?
How can I write a function that takes a format string and a variable number of arguments?
What is modeling?
What is volatile, register definition in C
difference between native and cross compilers
why we wont use '&' sing in aceesing the string using scanf
What is union and structure in c?