Discussion :: Operators and Expressions
-
Consider the following program fragment, and choose the correct one
void main()
{
int a, b = 2, c;
a = 2 * (b++);
c = 2 * (++b);
}
Answer : Option A
Explanation :
Explanation Not Provided
Be The First To Comment