Can anyone tell me what is the difference between i++ and ++i w.r.t compiler in C
Can anyone tell me what is the difference between i++ and ++i w.r.t compiler in C
EmbLogic Research & Competency Development Labs
Phone: +91 9818467776, 8527567776, 9650467776
Email: info@emblogic.com
Copyright © EmbLogic Embedded Technologies Pvt. Ltd.
++i is pre-increment operator means it first increment the value then use it.
i++ is post-increment operator means first use the value then increment it.