How can I check if execv failed or not, and how to use perror

前端 未结 0 1972
自闭症患者
自闭症患者 2021-01-26 08:53
pid_t extraction = fork();
    
    switch(extraction){
        case -1 :
        printf("fork() failed\\n");
        break;

        case 0 :
        for(int          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题