I have this project

Im currently working on this project most of the coding is done. However I am getting error message when it comes to a specific block of code displayed here:

/* Ask if the player wants to see the entire deck. If so, print it out. */
cout << "Ok " + name + ", first things first. Do you want to see what " << endl << "the deck of cards looks like (1 = y/0 = n)? ";
cin >> SeeTheDeck;


now the error message I am receiving is this: "invalid operands to binary expression ('const char' and const char).

If anyone can help that would be great please and thank you in advance
@delag20

To print the name in your cout line, replace each + with a pair of less than's.
<<
wow completely missed that thank you so much!
Topic archived. No new replies allowed.