当前位置: 编程技术>c/c++/嵌入式
C语言中system()函数的用法总结
来源: 互联网 发布时间:2014-10-22
本文导语: system()函数功能强大,很多人用却对它的原理知之甚少先看linux版system函数的源码: 代码如下:#include #include #include #include int system(const char * cmdstring){ pid_t pid; int status; if(cmdstring == NULL){ return (1...
system()函数功能强大,很多人用却对它的原理知之甚少先看linux版system函数的源码:
代码如下:
#include
#include
#include
#include
int system(const char * cmdstring)
{
pid_t pid;
int status;
if(cmdstring == NULL){
return (1);
}
if((pid = fork())