smart-green-house-server-an.../cgi-bin/hello.c

12 lines
335 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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;
}