1.9 System系统调用
System库函数的功能是执行操作系统的命令或者运行指定的程序。system库函数的调用需要#include<stdlib.h>这个头文件。
#include <stdlib.h> int main() { system("notepad"); return 0;//return 0 代表执行成功,return -1 代表执行失败
}
1.9.2 POSIX
写代码尽量使用支持POSIX的库函数
原文:http://www.cnblogs.com/wuchuanying/p/6254440.html