write the statements equivalent to A++ and A--.
Answers
Answered by
2
Answer:
The question is not clear.
It depends on the programming language that you are asking about.
Generally, in programming language:
A++ is equal to A = A + 1
A-- is equal to A = A - 1
Explanation:
A++ means that the value of A will be increased by 1
A-- means that the value of A will be decreased by 1
Similar questions