C
Programming and Technical
output??
Q.
void main()
{i
nt i=5;
printf("%d",i++ + ++i);
}
A. Output Cannot be predicted exactly.
Explanation: Side effects are involved in the evaluation of i
Read Solution (Total 1)
-
- 12
i++=5
now i=6
++i=6+1=7
i.e.12 - 10 years agoHelpfull: Yes(0) No(0)
C Other Question