6.
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;
}

Read More Section(Linux)

Each Section contains maximum 100 MCQs question on Linux. To get more questions visit other sections.