Valid CPA Dumps shared by EduDump.com for Helping Passing CPA Exam! EduDump.com now offer the newest CPA exam dumps, the EduDump.com CPA exam questions have been updated and answers have been corrected get the newest EduDump.com CPA dumps with Test Engine here:
Which code, inserted at line 15, generates the output "5 Bob"? #include <iostream> #include <string> using namespace std; class B; class A { int age; public: A () { age=5; }; friend void Print(A &ob, B &so); }; class B { string name; public: B () { name="Bob"; }; //insert code here }; void Print(A &ob, B &so) { cout<<ob.age << " " << so.name; } int main () { A a; B b; Print(a,b); return 0; }