Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
#include <stdio.h> #include <stdlib.h> int main(void) { char ch = 'z'; if (ch == 'z') { exit(0); } else { printf("Continue with the program"); } return 0; } /* run: */