for(int i = 0; i < size; i++) {
    //Do your loop thing here
}

//Is the same as

int i = 0;
while(i < size) {
    //Do your loop thing here
    i++;
}