What is output of the following program ?
main()
{
i = 1;
printf("%d %d %d\n",i,i++,i++);
}
Answer Posted / navi
1 1 1
| Is This Answer Correct ? | 2 Yes | 14 No |
Post New Answer View All Answers
Explain what is the difference between #include and #include 'file' ?
Are the expressions * ptr ++ and ++ * ptr same?
What are global variables?
What is wrong in this statement? scanf(ā%dā,whatnumber);
What is pass by value in c?
Write a program to print "hello world" without using a semicolon?
Explain how do you print only part of a string?
Explain what is the difference between functions getch() and getche()?
What is the most efficient way to store flag values?
What is the difference between #include and #include 'file' ?
Write a code on reverse string and its complexity.
What is getch c?
What is the difference between exit() and _exit() function in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Do you know what are bitwise shift operators in c programming?