int func1(int& b)
{
return 0;
}
void func2()
int bbb = 3;
func1(&bbb);
func1(bbb);
func2中有何错误,func1的参数b 的类型是什么。
请帮忙给出正确答案和分析,谢谢!