I have a long line of code:
cout << "Your gas mileage for this trip is: " << setprecision(5) << milesPerGallon << " MPG " << endl;
How do I continue this string literal to the next line without breaking the code? I know in
VB you use & _ but how do you continue a line in C++?
Thanks in advance...Kevin