what is the difference of between a++ and ++a
Answers
Answered by
1
Answer:
a++ is post fix increment operator and ++a is pri fix increment operator
Answered by
1
Answer:
its post and pre increment of variable a
Explanation:
When you use ++ before a increment of operator a is the thing happen in equation of statement
But
When you use ++ after a increment is done after the operation/ statement
Similar questions