Notice
Recent Posts
Recent Comments
Link
관리 메뉴

DreamFactory7

작은 코드 본문

생각

작은 코드

우루사1호 2011. 5. 24. 23:15
#1
int i=0;
for(i=0; i<8; i++){}
printf("%d",i);
예상은 7이 나올거라 생각되지만
이렇게 하면 결과는 8이나온다.

#2
int i=0;
while(1){
printf("%d",i);
i++
i%=8;
}
이렇게하면 12345671234567... 계속 반복한다.