📄 ex1_02.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -