what is the output for this question:
main()
{
int i=1;
printf("%d%d%d",i,i++,++i);
}
Answer Posted / richa
3,2,2
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is default value of global variable in c?
How can I prevent another program from modifying part of a file that I am modifying?
Why does this code crash?
What are # preprocessor operator in c?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What are actual arguments?
What is a static variable in c?
What is the difference between the = symbol and == symbol?
Why c is called object oriented language?
What are the types of type qualifiers in c?
What is difference between structure and union in c?
When c language was developed?
What is main () in c?
If errno contains a nonzero number, is there an error?
What is the use of pragma in embedded c?