中国大学MOOC: 设有下列变量定义与函数声明,则合法的函数调用语句是()。int x,y;void swap(int *p,int *q);
举一反三
- 设有下列变量定义与函数声明,则合法的函数调用语句是()。int x,y;void swap(int *p,int *q);
- 设有函数原型:void fun(int &a, int b); 和声明语句int x, y;则下面函数调用中正确的是(
- 中国大学MOOC: 有函数原型声明: void f( int *);主函数中有变量定义: int a,b[3],*p=&a;下列函数调用语句错误的是_______
- 从函数的声明来看,调用以下那几个函数有可能实现函数外的两个数据的交换? A: void Swap(int x, int y) //值传递 B: void Swap(int & x, int & y) //引用传递 C: void Swap(int * x, int * y) //指针传递 D: void Swap(Point x, Point y) //对象值传递
- 中国大学MOOC: 有函数原型为void f(int, int *);,主函数中有变量定义:int a=2, *p=&a; 则下列函数调用正确的是