MCQs > IT & Programming > C++ > Point out proper answer about the difference between below source codes for the execution of external commands if (fork() == 0) { execve(path, args, env); exit(1); } and FILE *fp = popen(path, “r”); if (fp) { pclose(fp); }

C++ MCQs

Point out proper answer about the difference between below source codes for the execution of external commands if (fork() == 0) { execve(path, args, env); exit(1); } and FILE *fp = popen(path, “r”); if (fp) { pclose(fp); }

Answer

Correct Answer: Same but different is related with the output from the execution result of

Explanation:

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it