关于嵌套函数的返回问题
int func1(){ return 1;}int func2(){ func1(); return 2;}int returntempvalue = func2();cout<<"returned value is = "<<returntempvalue<<endl;