while문에서의 "i++"의 의미
동백
2023.04.01
while문에서의 i++의 의미이하동문질문 내용 :
[소스]
#nclude stdio.h
int main(void)
int i = 0;
while(i10)
printf(반복합니다. \n);
i++
i++의 의미가 뭐죠?