What will happen as we press the "Ctrl+c" key after running this program?
#include<stdio.h>
#include<signal.h>
void response (int);
void response (int sig_no)
{
printf("Linux\n");
}
int main()
{
signal(SIGINT,response);
while(1){
printf("Example\n");
sleep(1);
}
return 0;
}
#include<stdio.h>
#include<signal.h>
void response (int);
void response (int sig_no)
{
printf("Linux\n");
}
int main()
{
signal(SIGINT,response);
while(1){
printf("Example\n");
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
Answer: Option A

Join The Discussion