/* Program 1.9 */ /* functions with parameters */ /* first example */ /* Used header files */ /* header files */ #include #include /* declaration of used functions */ void press_key(void); void asshole_attack(void); /* implementation of used functions */ void press_key(void) { printf("Press any key to proceed\n"); getch(); } /*************************************************/ void asshole_attack(void) { printf("Attack the player with 1000 assholes\n"); } /* Main function - our program starts here*/ void main(void) { asshole_attack(); asshole_attack(); asshole_attack(); press_key(); } /* our program ends here */