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
What does p mean in physics?
What is the use of printf() and scanf() functions?
Where is c used?
how could explain about job profile
What is unary operator?
Explain how can I open a file so that other programs can update it at the same time?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
When is the “void” keyword used in a function?
What is a struct c#?
Where register variables are stored in c?
What is integer constants?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is pointer to pointer in c with example?
What is nested structure?
Which is more efficient, a switch statement or an if else chain?