Ctrl + C interrupt event handling in Linux
When you press Ctr + C, the operating system sends a signal to the process. There are many signals and one of them is SIGINT. The SIGINT (“program interrupt”) is one of the Termination Signals. There are a few more kinds of Termination Signals, but the interesting thing about SIGINT is that it can be … Read more