/* * allfunctions.c */ #include void WeatherMan(void); int main(void) { WeatherMan(); WeatherMan(); return 0; } void WeatherMan(void) { printf("\nA cold front will push into northern Nevada"); printf("while low proessure approaches the coast of Oregon.\n"); printf("A few showers will linger over northern areas....\n"); printf("... more sun and seasonal temperaturs can be expected.\n"); }