1)
for(int i=0;i<n;i++){
something();
}

2)
int i;
for(i=0;i<n;i++){
something();
}


근거를 가지고 답하시오.