#include #include int test1(int a){ printf("a=%d\n",a); return 0}int main(){ int a=1; test1(a); /*这样调用即可,使用函数名再加上参数就OK*/ return 0;}