What is the difference between i++ and ++i?


Warning: Trying to access array offset on false in /home3/indiakep/public_html/wp-content/plugins/dw-question-answer/inc/Template.php on line 8
All QuestionsCategory: C LanguageWhat is the difference between i++ and ++i?
Chetan Shidling asked 6 years ago

I need short information.

1 Answers
boss answered 6 years ago

The expression such as i++ returns the old value and then it increments, and the expression ++i increments value and then returns a new value.