qfedu-c-level/day7/d9/help.c

13 lines
198 B
C
Raw Normal View History

2023-07-11 19:52:53 +08:00
#include "help.h"
// 内部函数
static void _show_sum(int a, int b, int c)
{
printf("%d + %d = %d\n", a, b, c);
}
// 全局函数
void twoNumAdd(int a, int b)
{
_show_sum(a, b, a + b);
}