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
What would be an example of a structure analogous to structure c?
What is memcpy() function?
What are terms in math?
How does struct work in c?
Is it valid to address one element beyond the end of an array?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Explain union.
Write a program to find factorial of a number using recursive function.
Write a program to generate the Fibinocci Series
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is substring in c?
What is the significance of c program algorithms?
What is the difference between text and binary i/o?
Explain what is the benefit of using an enum rather than a #define constant?
What are the types of variables in c?