hello.c
来自「此源码通过实例演示了makefile的书写规则和方法」· C语言 代码 · 共 13 行
C
13 行
#include <stdio.h>#include "hello.h"const char *greet = "Hello";inthello (const char *who){ printf("%s, %s!\n", greet, who); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?