在C语言中如何使用dos命令
2个回答
展开全部
用system()函数
原型:int system(char *cmd) 包含在dos.h下(VC 包含在stdlib.h)
如定时关机程序:
#include<stdio.h>
#include<dos.h>
#include<string.h>
void main()
{
char s[30]="shutdown -s -t ";
char *p;
printf("please input how many seconds you want to wait : ");
scanf("%s",p);
strcat(s,p);
system(s);
}
需要注意的是,上面的程序需在Turbo C小编译,在VC环境下会提示error C2065: 'system' : undeclared identifier
可以改为:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char p[100]="shutdown -s -t ";
char s[20];//注意这里不能写成*s否则即使调试成功,程序写无法正常运行!
int str;
int ch;
printf("请输入等待时间(秒):");
scanf("%s",s);
strcat(p,s);
system(p);
return 0;
}
一旦编译成功后就可以在工程文件夹下找到生成的*.exe 文件,以后就不用那么麻烦的键入命令啦,呵呵……
如果想取消关机,可另外在写一个程序:
#include<stdio.h>
#include<dos.h>
#include<string.h>
void main()
{
char s[30]="shutdown -a ";
system(s);
}
二合一,那叫一个方便啊,哦也!!!
原型:int system(char *cmd) 包含在dos.h下(VC 包含在stdlib.h)
如定时关机程序:
#include<stdio.h>
#include<dos.h>
#include<string.h>
void main()
{
char s[30]="shutdown -s -t ";
char *p;
printf("please input how many seconds you want to wait : ");
scanf("%s",p);
strcat(s,p);
system(s);
}
需要注意的是,上面的程序需在Turbo C小编译,在VC环境下会提示error C2065: 'system' : undeclared identifier
可以改为:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char p[100]="shutdown -s -t ";
char s[20];//注意这里不能写成*s否则即使调试成功,程序写无法正常运行!
int str;
int ch;
printf("请输入等待时间(秒):");
scanf("%s",s);
strcat(p,s);
system(p);
return 0;
}
一旦编译成功后就可以在工程文件夹下找到生成的*.exe 文件,以后就不用那么麻烦的键入命令啦,呵呵……
如果想取消关机,可另外在写一个程序:
#include<stdio.h>
#include<dos.h>
#include<string.h>
void main()
{
char s[30]="shutdown -a ";
system(s);
}
二合一,那叫一个方便啊,哦也!!!
展开全部
使用管道和输入输出重定向.可以有效控制基于控制太的程序.
最简单的方式是使用stdlib.h中的system函数,直接调用
参考:
http://www.cplusplus.com/reference/clibrary/cstdlib/system/
最简单的方式是使用stdlib.h中的system函数,直接调用
参考:
http://www.cplusplus.com/reference/clibrary/cstdlib/system/
追问
高手,您能将第一种方法讲讲吗?小弟不胜感激!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询