printf does not insert newlines into your output.

You could do this:
Code:
printf("%s",
    "My name is Bob\n"
    "I like green apples\n"
    "My favorite color is red\n"
    "I live in a blue house\n");