Is there any performance difference between for, while or do...While loop in c?
One of my professor told me for loop was faster when scoldering me for never using them (for readability, I think for loop are less readable than (do...)while loop).
I don t have a compiler on hand nor time to test execution time, and if there is a difference, I would like to know why.
(I know a lot of SO question seems similar, but are either asking about while vs do while, or haven t any answer)