Can anyone here explain me why in my code i++ takes more time than i=i+1 In one of my problem I encountered a huge change in runtime from changing i++ to i=i+1.Why so????
i++
i=i+1