/* File: roses4.c This version has main first. We use function prototypes to get rid of warnings. */ #include void func1() ; void func2() ; int main() { func2() ; printf("I'm looking for a word\n") ; printf("That rhymes with \"you\"\n") ; return 0 ; } void func1 () { printf("Roses are red\n") ; return ; } void func2() { func1() ; printf("Violets are blue\n") ; return ; }