Discussion :: Operators and Expressions
-
void main()
{
int a=10, b;
b = a++ + ++a;
printf("%d %d %d %d", b, a++, a, ++a);
}
what will be the output when following code is executed?
Answer : Option E
Explanation :
Explanation Not Provided
Be The First To Comment