This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#include <stdio.h>
int main(int argc, char const* argv[]) {
for (int i = 1; i < 3; i++) {
for (int j = 1; j <= i; j++) {
twoNumAdd(i, j); // help.c的外部函数
// _show_sum(i, j, i + j);
// 不能调用,它是static函数,是help.c的内部函数
}
return 0;