vc6.0下dos.h头文件不能打开,报错sleep没有声明
#include "stdafx.h"#include <stdlib.h>
#include <dos.h>
int main(int argc, char* argv[])
{
int n;
printf("please input:");
scanf("%d",&n);
while(n>0)
{
system("cls");
printf("%d",n);
Sleep(1);
n--;
}
system("cls");
printf("time is over");
getchar();
return 0;
}