main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?
Answer Posted / animesh_chakraborty
answer is:124
i compiled it and it has shown this result .
i thing it is correct answer.
| Is This Answer Correct ? | 10 Yes | 5 No |
Post New Answer View All Answers
What is the use of static variable in c?
What is the purpose of void in c?
What are data structures in c and how to use them?
What is modifier & how many types of modifiers available in c?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Explain what is the use of a semicolon (;) at the end of every program statement?
Do pointers take up memory?
Where register variables are stored in c?
Explain how do you print an address?
How is a structure member accessed?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What are reserved words?
What is formal argument?
What is calloc in c?