First of all the "For" must write with small letter be "for". Than you must change the "," to ";" and the i must be declared as DWORD or integer Variable. And the answer is it loops 4 times. Because < 5 is smaller than 5. It´s 4...
correctly it looks like so:
Code:
for(int i = 0; i < 5; i++){
Regards
'i' is a variable.
Lol. I knew my syntax was off xD.
Thats what i thought, just wanted to make sure /
edit: fixed syntax errors
Originally Posted by inmate
First of all the "For" must write with small letter be "for". Than you must change the "," to ";" and the i must be declared as DWORD or integer Variable. And the answer is it loops 4 times. Because < 5 is smaller than 5. It´s 4...
correctly it looks like so: