I'm trying to add int to string in a return statement like so:
string Birthday::asString() {
return this -> day + "/" + this -> month + "/" + this -> year;
}
and getting the following error:
Error: expression must have integral or unscoped enum type
I'm kind of new to C++.
day,monthandyear?->.