c·c++/c 프로그래밍

kbhit

바로이순간 2012. 5. 16. 12:54

#include <stdio.h>

#include <conio.h>

#include <windows.h>

int main() {

    while(1) {

        if(kbhit()) break;

        printf(".");

        Sleep(100);

    }


    return 0;

}