/* File: roses2.c Functions can call functions. */ #include void func1 () { printf("Roses are red\n") ; return ; } void func2() { func1() ; printf("Violets are blue\n") ; return ; } int main() { func2() ; printf("I'm looking for a word\n") ; printf("That rhymes with \"you\"\n") ; return 0 ; }