MCQ Practice
What is the output of this program? #include int main() { if (mkfifo("/tmp/test_fifo",0666) != 0) perror("mkfifo"); if (mkfifo("/tmp/test_fifo",0666) != 0) perror("mkfifo"); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: B