Override Ctrl-C
问题 I am supposed override the Ctrl C signal and use it to print a message. It is not supposed to end the program. What happens so far is that when Ctrl C is pressed it prints the message, but ends the program. When I asked my professor he told me to do this: You need to make your signal handler keep from continuing to process the signal. Right now the signal is being handled by your code and then going on to the parent handler. Is there a method I am supposed to add or do i need to move the