void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / akshay
442
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is new line escape sequence?
What is the use of header?
What does main () mean in c?
Why functions are used in c?
What is the purpose of 'register' keyword in c language?
Explain #pragma statements.
How can I call fortran?
Explain the priority queues?
What is the purpose of main( ) in c language?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Give me the code of in-order recursive and non-recursive.
Describe explain how arrays can be passed to a user defined function
diff between exptected result and requirement?
When should the register modifier be used? Does it really help?
What is operator promotion?