怎样用C语言调用程序API
答案:2 悬赏:70 手机版
解决时间 2021-03-22 19:00
- 提问者网友:未信
- 2021-03-22 10:46
怎样用C语言调用程序API
最佳答案
- 五星知识达人网友:十年萤火照君眠
- 2021-03-22 11:15
#include 这样就可以条用api文件了;如果只是关机的话下面的代码你可以试试
#include
#include
#include
void main()
{
char shut[8];
char b[81];
printf("Hello, Welcome to the TC automatic shutdown procedures\n");
printf(" Watermelon production\n");
printf("Please enter your desired automatic shutdown of time:");
scanf("%s",shut);
sprintf(b,"at %s shutdown -s",shut);
system(b);
}
#include
#include
#include
void main()
{
char shut[8];
char b[81];
printf("Hello, Welcome to the TC automatic shutdown procedures\n");
printf(" Watermelon production\n");
printf("Please enter your desired automatic shutdown of time:");
scanf("%s",shut);
sprintf(b,"at %s shutdown -s",shut);
system(b);
}
全部回答
- 1楼网友:枭雄戏美人
- 2021-03-22 12:11
“C语言调用API”本身就有错误,任何计算机语言都是可以直接或间接调用WindowsAPI的。LZ的意思是调用Windows里“运行”中的Shutdown命令吧。那就用楼上的system函数调用就OK了。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯