[C언어] for문 기본정리

#include <stdio.h>

int main () {

int i = 1;
while (i <= 10) {
printf("%d\n", i);
i++;
}
}

댓글을 작성해보세요.