Home » C# Programming » 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;

Correct Answer: 2, 4

← Previous Question Next Question→

More Questions from Operators

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion