MCQ Practice

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("Linuxn"); } int main() { signal(SIGINT,response); while(1){ printf("Examplen"); sleep(1); } return 0; }

A

the string "Linux" will print

B

the process will be terminated after printing the string "Linux"

C

the process will terminate

D

none of the mentioned

Correct Answer: A