Hello, I'm new here, I was here like 3years ago, but I'm back, I'm a programmer, I think I can learn from U a lot, and I can share some things for u too :)
I just have one question about preincrementation. For ex. we got
array[6] = { 1, 2, 3, 4, 5, 6 };
for(i=0; i < 6; i++)
{
array[i]=array[i+1];
}
why this one does not work:
for(i=0; i < 6; 1)
{
array[i]=array[++i];
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.