02-17-2005, 12:13 PM | #1 (permalink) |
Insane
Location: The reddest state ever. :(
|
[c++] multi-line string literals error
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.
__________________
CUBS WIN, CUBS WIN!!!! - Pat Hughes "Don't surround yourself with yourself." Yes |
02-17-2005, 12:43 PM | #2 (permalink) |
Cracking the Whip
Location: Sexymama's arms...
|
What function are you using for the string input?
And are you using string class strings or character arrays?
__________________
"Of all tyrannies, a tyranny exercised for the good of its victims may be the most oppressive. It may be better to live under robber barons than under omnipotent moral busybodies. The robber baron's cruelty may sometimes sleep, his cupidity may at some point be satiated; but those who torment us for our own good will torment us without end, for they do so with the approval of their own conscience." – C. S. Lewis The ONLY sponsors we have are YOU! Please Donate! |
02-17-2005, 01:20 PM | #3 (permalink) | |
Upright
Location: Boulder, Colorado
|
Quote:
Code:
std::cout << "Withdrawl amount from checking (" << withdraw << ") " << "exceeds balance ( " << checkB << " )" ;
__________________
/K |
|
Tags |
error, literals, multiline, string |
|
|