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
How can I swap two values without using a temporary?
How to find a missed value, if you want to store 100 values in a 99 sized array?
Ow can I insert or delete a line (or record) in the middle of a file?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Why do we use stdio h and conio h?
What is union and structure in c?
Can a local variable be volatile in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
How can I get back to the interactive keyboard if stdin is redirected?
What is the best way to store flag values in a program?
What's the difference between constant char *p and char * constant p?
What do you mean by dynamic memory allocation in c? What functions are used?
Which function in C can be used to append a string to another string?
Why do we need volatile in c?