System函数的使用说明
Posted wenshinlee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了System函数的使用说明相关的知识,希望对你有一定的参考价值。
#inlcude<stdlib.h>
int system(const char* command)
功能:在已经运行的程序中调用另一个外部程序
参数:外部可执行程序的名字
返回值:不同系统的返回值不一样
实例程序
#include<stdio.h>
#include<stdlib.h>
int main()
printf("before sys\\n");
system("ls");
//system("ls -alh");
//查看执行程序所在目录下的所有目录内容
// system("./hello");
//hello为该程序目录下的可执行文件,程序会在执行到system的时候,调用hello这个程序
printf("after sys\\n");
return 0;
结果
以上是关于System函数的使用说明的主要内容,如果未能解决你的问题,请参考以下文章