MCQ Practice
What is the output of this program? #include #include #include #include int main() { int s_id; s_id = shm_open("shared_mem",O_CREAT|O_RDWR,0666); printf("%dn",s_id); if(shm_unlink("shared_mem") == -1) perror("shm_unlink"); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: D