标签:system mic color src man span 运行 ons display
#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 mic color src man span 运行 ons display
原文地址:https://www.cnblogs.com/wenshinlee/p/11002694.html