I am trying to make a table for my beginners C++ class. In doing so, I have been using the Cout command. My question is, Is there a limit to how many characters i can have on a single cout command? i would like to display this whole table using a single cout statement.
The following code is my table. As is, I am getting a simple compile time error. "[Error] expected ';' before string constant" (on the line that starts with taxes) I can fix it by making more Cout statements, but as stated previously, I would like to organize this code as is. Am i forgetting something?