Computer Science, asked by nikhiprmod99, 11 months ago

Which of the following is not a valid C++ statement?
a). x = x + 10; b). x + = 10; c), x + 10 = x; d). x = 10 + x;​

Answers

Answered by Inspirations
2

Answer:

C

Explanation:

x+10=x

quantifier should be in left

correct is x= x+10

Similar questions