Vidyalelo
Computer Science · Q706

Linux

Engineering and GATE · Computer Science · question 706

Q706

What will happen as we press the "Ctrl+c" key after running this program? #include #include void response (int); void response (int sig_no) printf("Linux "); int main() signal(SIGINT,response); while(1) printf("Example "); sleep(1); return 0;

A.
the string "Linux" will print
Answer
B.
the process will be terminated after printing the string "Linux"
C.
the process will terminate
D.
none of the mentioned

Answer: Option A

Solution

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