0 [C언어] for문 기본정리 #include <stdio.h> int main () { int i = 1; while (i <= 10) { printf("%d\n", i); i++; } } 프로그래밍 언어・C・for문 0