Vidyalelo
Computer Science · Q528

Linux

Engineering and GATE · Computer Science · question 528

Q528

This program will print #include #include #include void response (int); void response (int sig_no) printf("%s is working ",sys_siglist[sig_no]); int main() alarm(5); sleep(50); printf("Example "); signal(SIGALRM,response); return 0;

A.
"Example"
B.
"Alarm clock"
Answer
C.
nothing
D.
none of the mentioned

Answer: Option B

Solution

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