what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / rameesh ka
answer is
3,2,2
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Where does the name "C" come from, anyway?
Explain what does it mean when a pointer is used in an if statement?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What are the disadvantages of a shell structure?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is #include stdlib h?
What is wrong with this declaration?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Write a program with dynamically allocation of variable.
What does %p mean?
Difference between goto, long jmp() and setjmp()?
What does p mean in physics?
What are the types of pointers?
What is the general form of #line preprocessor?
What is a shell structure examples?