7 lines
126 B
C
7 lines
126 B
C
|
#include <stdio.h>
|
||
|
|
||
|
// 内部函数
|
||
|
static void _show_sum(int a, int b, int c);
|
||
|
|
||
|
// 全局函数
|
||
|
void twoNumAdd(int a, int b);
|