Vidyalelo
Computer Science · Q408

Linux

Engineering and GATE · Computer Science · question 408

Q408

What is the output of this program? #include #include #include #include #include #include struct data_st long int id; char buff[11]; ; int main() int m_id; struct data_st data1, data2; m_id = msgget((key_t)181,0666|IPC_CREAT); if(m_id == -1) perror("msgget"); data1.id = 1; strcpy(data1.buff,"Example"); if(msgsnd(m_id,&data1,11,0) == -1) perror("msgsnd"); if(msgctl(m_id,IPC_RMID,0) != 0) perror("msgctl"); if(msgrcv(m_id,&data2,11,1,0) == -1) perror("msgrcv"); printf("%s ",data2.buff); return 0;

A.
this program will print the string "Example"
B.
this program will print the garbage value
Answer
C.
this program will give segmentation fault
D.
none of the mentioned

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board