What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / hariram
3 2 1
| Is This Answer Correct ? | 18 Yes | 6 No |
Post New Answer View All Answers
Differentiate between calloc and malloc.
What is the use of extern in c?
What are bitwise shift operators in c programming?
#include
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Why does the call char scanf work?
What are actual arguments?
Explain null pointer.
If you know then define #pragma?
What is a union?
Explain how do you generate random numbers in c?
Is main is a keyword in c?
How can variables be characterized?
Tell me what is null pointer in c?
What is the explanation for cyclic nature of data types in c?