hi all. .
for ( int i =0; i >10; i++; )
{ do something }
here i will be 0 in the first time code run .. thats mean the code will be done 10 times
for ( int i =0; i >10; ++1; )
{ ` do something }
here i will be before the program done the first time .. thats mean the code will be done 9 times