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
Explain modulus operator.
Explain About fork()?
How does sizeof know array size?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What are identifiers and keywords in c?
What is the advantage of an array over individual variables?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What are the ways to a null pointer can use in c programming language?
How can I do graphics in c?
What is optimization in c?
Write a C program to count the number of email on text
Why is #define used?
What is array of structure in c?
What is the difference between new and malloc functions?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34