What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / murali
3 2 1
| Is This Answer Correct ? | 11 Yes | 5 No |
Post New Answer View All Answers
Explain what is the difference between #include and #include 'file' ?
What is the difference between array and pointer in c?
Explain what are its uses in c programming?
What are the different data types in C?
What is realloc in c?
What is %d called in c?
Explain what is the difference between functions getch() and getche()?
What is wrong with this statement? Myname = 'robin';
What is the main difference between calloc () and malloc ()?
What is a substring in c?
How to create struct variables?
What is the difference between pure virtual function and virtual function?
what is use of malloc and calloc?
What is a volatile keyword in c?
How are variables declared in c?