A、错
B、对
A、错
B、对
A、对
B、错
A、被调用函数中可以不用 return 语句
B、被调用函数中,如果有返回值,就一定要有 return 语句
C、被调用函数中,一个 return 语句可以返回多个值给调用函数
D、被调用函数中可以使用多个 return 语句
A、定义函数时所指定的函数类型
B、调用函数时临时决定
C、调用该函数的主调函数的类型
D、return语句中的表达式类型
A、5
B、3
C、有语法错
D、4
A、13
B、12
C、14
D、15
A、不允许直接递归调用允许间接递归调用
B、既允许直接递归调用也允许间接递归调用
C、不允许直接递归调用也不允许间接递归调用
D、允许直接递归调用不允许间接递归调用
A、void fun(int n, int a)
B、void fun(int p, int *s)
C、void fun(int m, int x[ ])
D、void fun(int s, int h[ 41])
A、对
B、错