Discussion :: Operators
-
Which of the following are the correct ways to increment the value of variable a by 1?
- ++a++;
- a += 1;
- a ++ 1;
- a = a +1;
- a = +1;
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment