for(int i=0;i<n;i++)
{
}
vs
for(int i=0;i<n;++i)
{
}
Both these loop run n times but we know that ++i and i++ are different. So can anyone explain what is happening in backend in gcc compiler using cpp? Thanks in advance
for(int i=0;i<n;i++)
{
}
vs
for(int i=0;i<n;++i)
{
}
Both these loop run n times but we know that ++i and i++ are different. So can anyone explain what is happening in backend in gcc compiler using cpp? Thanks in advance