ex1_02.c
来自「[C语言入门经典(第4版)]整本书的源码!值得推荐!全部是最简单的源码!」· C语言 代码 · 共 13 行
C
13 行
/* Exercise 1.2 Output a name and address in a single statement */
#include <stdio.h>
int main(void)
{
/* 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");
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?