求VC++6.0平台下用C写的代码用到延迟函数
如题 ,具体要调用哪个库,哪个函数,函数的详细功能
程序代码:
#include<stdio.h> #include<windows.h>//include this headfile int main() { printf("wait 1 second\n"); Sleep(1000);//Sleep,S要大写,参数是long型 printf("OK\n"); return 0; }S要大写