c語言主函數(shù)調(diào)用怎么寫?
#include #include int test1(int a) { printf("a=%d\n",a); return 0 } int main() { int a=1; test1(a); /*這樣調(diào)用即可,使用函數(shù)名再加上參數(shù)就OK*/ return 0; }
c語言主函數(shù)調(diào)用怎么寫?
#include #include int test1(int a) { printf("a=%d\n",a); return 0 } int main() { int a=1; test1(a); /*這樣調(diào)用即可,使用函數(shù)名再加上參數(shù)就OK*/ return 0; }