#include #include #include main() { int c; while(1) { c = getchar(); if(c == 'z') { kill(getpid(), SIGSTOP); printf(">>Resumed\n"); } } } .