原型: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)
}
二合一,那叫一个方便啊,哦也!!!
C语言里面使用DOS命令,需要使用system函数。
函数名: system
功 能: 发出一个DOS命令
用 法: int system(char *command)
打开电脑文件,在DOS下可以使用START命令。
start
启动单独的“命令提示符”窗口来运行指定程序或命令。如果在没有参数的情况下使用,start 将打开第二个命令提示符窗口。
语法
start ["title"] [/dPath] [/i] [/min] [/max] [{/separate | /shared}] [{/low | /normal | /high | /realtime | /abovenormal | belownormal}] [/wait] [/b] [FileName] [parameters]
参数
"title" 指定在“命令提示符”窗口标题栏中显示的标题。
/dpatch 指定启动目录。
/i 将 Cmd.exe 启动环境传送到新的“命令提示符”窗口。
/min 启动链拦灶新的最小化窗口。
/max 启动新的最大化窗口。
/separate 在单独的衡锋内存空间启动 16 位程序。
/shared 在共享的内存空间启动 16 位程序。
/normal 以一般优先级启动应用程序。
/high 以高优先级启动应用程序。
/realtime 以实时优先级启动应用棚扮程序。
/abovenormal 以超出常规优先级的方式启动应用程序。
/belownormal 以低出常规优先级的方式启动应用程序。
/wait 启动应用程序,并等待其结束。
/b 启动应用程序时不必打开新的“命令提示符”窗口。除非应用程序启用 CTRL+C,否则将忽略 CTRL+C *** 作。使用 CTRL+BREAK 中断应用程序。
综上,在C中使用 system("start 文件名")命令即可打开文件。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)