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; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A
