Exercise 1.2 Output a name and address in a single statement

#include<stdio.h>
int main(void)
{
    printf("My name is xiaomi5320
	My address is www.cnblogs.com/xiaomi5320
");

    return 0;
}

将1.1 换成一行输出。

 Question:

  // The compiler will automatically join strings together into
  // a single string when they immediately follow one another
  // so the three strings between the brackets below will
  // be assembled into one long string.

Original:

#include <stdio.h>

int main(void)
{
      printf("George Washington
"
         "3200 George Washington Memorial Parkway
"
         "Mount Vernon
Virginia 22121
");
  return 0;
}
原文地址:https://www.cnblogs.com/xiaomi5320/p/4161695.html