testmycall.c
在与 testmycall.h 相同的目录下创建一个名为 testmycall.c 的 C 文件。该 C 文件看起来像
/*---C 文件开始------*/
#include<stdio.h>
#include "testmycall.h"
int main(void)
{
printf("%d\n", mycall(15));
}
/*---C 文件结束------*/