I'm writing the code for a loop sequence and two codes perform the same function but I want to choose the faster one and to know how to identify which one runs faster
for (i=0; i<100; i++)
and for (i=0; i<100; ++i)
I've used the two codes and they both perform the same function but I do not not know which is faster