Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1.     CCustomer c1("jojo",34);
  2.     cout << endl << "first CCustomer" << endl;
  3.     c1.Print(cout);
  4.  
  5.     CCustomer c2("momo",22,true);
  6.     cout << endl << "second CCustomer" << endl;
  7.     c2.Print(cout);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement