asked
C Programming - From Introduction to Game Development
do while
Written on
·
197
0
do while 과 while의 차이점은 무엇인가요
Answer 1
1
do while 은 뭔가 일단 먼저 하고(do) 나서 while 조건을 봅니다.
while 은 일단 조건이 맞으면 뭔가를 합니다.