I used the command "clear" in C language at infinite loop just for test and the kill signal does not stop it.
Why the program does not stop when i press Ctrl+C ?
#include <stdlib.h>int main () { while (1) { system("clear"); } return 0;}