what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / 123ghouse@gmail.com
3,2,2;
| Is This Answer Correct ? | 21 Yes | 8 No |
Post New Answer View All Answers
Write a program to identify if a given binary tree is balanced or not.
How can you invoke another program from within a C program?
what is stack , heap ,code segment,and data segment
What is #include conio h?
How can I open a file so that other programs can update it at the same time?
What is the use of a semicolon (;) at the end of every program statement?
Is the exit() function same as the return statement? Explain.
How are Structure passing and returning implemented by the complier?
What is static volatile in c?
How do I create a directory? How do I remove a directory (and its contents)?
What are different storage class specifiers in c?
Why does everyone say not to use scanf? What should I use instead?
What is function prototype?
In a byte, what is the maximum decimal number that you can accommodate?
What are global variables?