#include<stdio.h>
main(0
{
printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3));
}
Answer Posted / nithya
the above code output is
syntax error
this code will be change from
#include<stdio.h>
main()
{
printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3));
}
the out put is
222
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is a good way to implement complex numbers in c?
What is a pointer variable in c language?
What are different types of operators?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
How can you tell whether a program was compiled using c versus c++?
Why can’t we compare structures?
What is the condition that is applied with ?: Operator?
Explain zero based addressing.
Explain the difference between #include "..." And #include <...> In c?
Is c programming hard?
What is spaghetti programming?
Explain main function in c?
What are pragmas and what are they good for?
how can I convert a string to a number?