Q763
What happnes as the signal SIGINT hits the current process in the program? #include #include void response (int); void response (int sig_no) printf("Linux "); int main() struct sigaction act; act.sa_handler = response; act.sa_flags = 0; sigemptyset(&act.sa_mask); sigaction(SIGINT,&act,0); while(1) printf("Example "); sleep(1); return 0;
A.
the process terminates
B.
the string "Linux" prints
AnswerC.
the string "Linux" prints and then process terminates
D.
none of the mentioned
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board