191031--system函数的使用

mac2024-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; }
最新回复(0)