void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / surenda pal singh chouhan
Output Cannot be predicted exactly.
Explanation:
Side effects are involved in the evaluation of i
| Is This Answer Correct ? | 13 Yes | 15 No |
Post New Answer View All Answers
Difference between linking and loading?
What is the best way to store flag values in a program?
Why is c called c not d or e?
What are the types of bitwise operator?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
How do you sort filenames in a directory?
Explain a pre-processor and its advantages.
What is the purpose of void in c?
What is the use of header files?
What are pointers? What are different types of pointers?
Write a program to use switch statement.
Explain how can a program be made to print the line number where an error occurs?
What is extern variable in c with example?
explain what is a newline escape sequence?
What are compound statements?