Guest User

Untitled

a guest
Jul 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using namespace std;
  2.  
  3. string fname, lname;
  4.  
  5. string info[2][2] = {
  6. {"Write your First Name: ", "fname"},
  7. {"Write your Last Name: ", "lname"}
  8. };
  9.  
  10. void getInfo(){
  11. for(int i = 0; i < 2; i++)
  12. {
  13. cout << info[i][0];
  14. getline(cin, info[i][1]);
  15. }
  16. string welcomeMassage = "Hello: " + fname + " " + lname;
  17. printf(welcomeMassage.c_str());
  18. }
Add Comment
Please, Sign In to add comment