String C

#include 
void main() {
  /* The compiler will automatically join strings together into 
     a single string when they immediately follow one another   */
  printf("\nGeorge Washington"
         "\n3200 George Washington Memorial Parkway"
         "\nMount Vernon\nVirginia 22121\n");
}