来看这个代码
#include <stdio.h>
#include <stdlib.h>
int main() {
system("sleep 5 && touch test.txt");
FILE *fp = fopen("test.txt", "r");
if (!fp) {
printf("%m\n");
return -1;
}
fclose(fp);…… 阅读全文
Linux 调用 system 函数的注意事项
Reply