greeting.c
来自「The art and science of c_source code!」· C语言 代码 · 共 21 行
C
21 行
/* * File: greeting.c * ---------------- * This program prints a more personal greeting than did * the original "Hello, world." program by reading in the * name of the user. */#include <stdio.h>#include "genlib.h"#include "simpio.h"main(){ string user; printf("What is your name? "); user = GetLine(); printf("Hello, %s.\n", user);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?