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
What type of function is main ()?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
How do you declare a variable that will hold string values?
What does c in a circle mean?
Explain modulus operator. What are the restrictions of a modulus operator?
Explain how can I convert a string to a number?
What is cohesion and coupling in c?
What is the significance of scope resolution operator?
How the c program is executed?
What is the difference between char array and char pointer?
What are loops c?
Explain threaded binary trees?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Write a program to use switch statement.
What is the difference between the = symbol and == symbol?