首页
mac
it
登录
6mi
u
盘
搜
搜 索
it
191031--system函数的使用
191031--system函数的使用
mac
2024-11-14
8
// #include <stdlib.h>
// int system(const char *command);
// 功能:在已经运行的程序中执行另外一个外部程序
// 参数:外部可执行程序名字或者绝对路径
// 返回值:
// 成功:0
// 失败:非0
示例代码:
#
include
<stdlib.h>
#
include
<stdio.h>
int
main
(
)
{
int
value
=
0
;
value
=
system
(
"notepad"
)
;
// cmd命令,用以打开记事本
printf
(
"%d\n"
,
value
)
;
// system("C:\\Users\\THTF\\Desktop\\FeiQ.exe");
// system还可以打开外部的应用程序。如果带路径需要使用\\或者/
return
0
;
}
转载请注明原文地址: https://mac.8miu.com/read-497697.html
最新回复
(
0
)