main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?
Answer Posted / niru
2 2 2
it returns the size of the int.
if the compiler is 32bit, size of the int=4
o/p: 4 4 4
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
Define VARIABLE?
Explain the difference between call by value and call by reference in c language?
What is && in c programming?
why we wont use '&' sing in aceesing the string using scanf
Explain what are linked list?
What is the heap?
What do you understand by normalization of pointers?
Write a progarm to find the length of string using switch case?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the description for syntax errors?
Give differences between - new and malloc() , delete and free() ?
How is pointer initialized in c?
Why c is called a mid level programming language?
What is meant by high-order and low-order bytes?
What are local static variables?