#include <stdio.h>
#include <unistd.h>
int main()
{
int i;
for (i=10;i>=0;i--)
{
printf ("Count Down : %02d\r", i);
fflush(stdout);
sleep(1);
}
return(0);
}
'c 언어 > 초급과정' 카테고리의 다른 글
Standard sample Makefile (0) | 2021.08.06 |
---|---|
#include<limits.h> 선언후에 사용되는 정의값 (0) | 2021.06.21 |
C (프로그래밍 언어) 개요 (0) | 2021.04.27 |
문자열중에 오직 하나의 문자만 존재할경우를 찾는(?) (0) | 2020.08.30 |
중복되지않는 문자출력 (0) | 2020.08.26 |