Computer Science, asked by paul79, 11 months ago

write the statements equivalent to A++ and A--.​

Answers

Answered by MX1992
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