> so how would I printf a house?
One at a time.

There is one exception...
Code:
char sentence[] = "The cat sat on the mat";
printf("%s\n", sentence);
A char array (and ONLY a char array) can be printed in a single printf call.