Quote:
Originally Posted by Locke
I keep getting the "multi line string literals are depreciated" error. This is the line of code.
Withdrawl amount from checking ("<< withdraw <<") "exceeds balance" ( " << checkB << " );
I haven't run into this type of error before, so I'm not seeing whats wrong.
|
Looks like you missed a end quote, although you don't have a begin quote either, and there's an insertion operator missing and an extra quote before the ( after balance:
Code:
std::cout << "Withdrawl amount from checking (" << withdraw << ") "
<< "exceeds balance ( " << checkB << " )" ;