Is i++ really faster than i = i + 1?
Anyone asking this question does mean that they are simple interested or curious to learn programming. And most of the people will answer i++ is a single instruction where as i = i + 1 contains addition and followed by assignment so i++ is faster….
Programming
5