main()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?
Answer Posted / manik
1 2 4
| Is This Answer Correct ? | 9 Yes | 20 No |
Post New Answer View All Answers
Are local variables initialized to zero by default in c?
What does do in c?
What is non linear data structure in c?
Why is c so important?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What are the usage of pointer in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What does struct node * mean?
swap 2 numbers without using third variable?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How can I send mail from within a c program?
What is a double c?
What is the explanation for cyclic nature of data types in c?
What are the types of data structures in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10