What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / pooja keshri
321
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the use of #pragma exit?
Do pointers need to be initialized?
What is #define used for in c?
What are qualifiers in c?
What is meant by initialization and how we initialize a variable?
How do you generate random numbers in C?
What are local static variables?
Explain how do you search data in a data file using random access method?
Explain what are global variables and explain how do you declare them?
What does %d do in c?
how to create duplicate link list using C???
Is anything faster than c?
State the difference between realloc and free.
Why c is called object oriented language?
Can we change the value of static variable in c?