#include <stdio.h>
#include <conio.h>
#include <windows.h>
int main() {
while(1) {
if(kbhit()) break;
printf(".");
Sleep(100);
}
return 0;
}
'c·c++ > c 프로그래밍' 카테고리의 다른 글
codepad is an online compiler/interpreter (0) | 2012.05.16 |
---|---|
일정숫자를 넘기면 제대로 출력이 안되는 이유 (0) | 2012.05.16 |
몇가지 함수들 (0) | 2012.05.14 |
C컴파일러가 양수와 음수를 메모리에 저장하는 방식 그 이유 (0) | 2012.05.14 |
재귀함수(순환호출) 이해하기 (0) | 2012.05.14 |