/* File: roses3.c This version has main first. We get warnings from gcc. */ #include 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 ; }