/* sample-bomb.c Jeff Ondich, 8 February 2022 A short program for an in-class exercise in anticipation of the "bombs" homework assignment. */ #include #include #include "sample-bomb.h" char input_string[BUFFER_LENGTH]; void explode() { printf("BOOM!!\n"); exit(1); } int main() { printf("Let's defuse one easy bomb!\n"); printf("Please enter your defusing string for phase 0: "); phase0(); printf("Phew! Bomb defused. Thank you for your fearless efforts.\n"); return 0; }