标签:main 等价 默认参数 情况下 printf c语言 oid nbsp 必须
#include "stdio.h" int mull(int x = 2); int add(int x=1, int y=2, int z=3); //函数占位参数 int func(int x,int) { return x; } int main() { printf("%d\n", mull()); //x=2 printf("%d\n", mull(3)); //x=3 printf("%d\n", mull(-1)); //x=-1 printf("%d\n", add()); //x=1,y=2,z=3 printf("%d\n", add(0)); //x=0,y=2,z=3 printf("%d\n", add(2,3)); //x=2,y=3,z=3 printf("%d\n", add(4,5,6)); //x=4,y=5,z=6 func(1,2); return 0; } int mull(int x) { return x*x; } int add(int x,int y,int z) { return x + y + z; }
标签:main 等价 默认参数 情况下 printf c语言 oid nbsp 必须
原文地址:https://www.cnblogs.com/chengeputongren/p/12177867.html