/* INTRO24.C--Example from Chapter 4 of Getting Started */ #include #include void tally(void); int main() { while ( getch() != 'q') tally(); return 0; } void tally(void) { static int called = 0; called++; printf("Function tally called %d times\n", called); }