MCQ Practice
What is the output of this program? #include #include #include #include #include int main() { int s_id; s_id = shm_open("shared_memory",O_TRUNC,0666); if(s_id == -1) perror("shm_openn"); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: B
