Alrighty guys, so say I have something like this:
cout <<"hello";
cout <<"how ya doin?";
cout <<"goodbye.";
i know that it is somehow possile to write it something like this:
cout <<"hello";
<<"how ya doin?";
<<"goodbye.";
How would one properly format the block of code with only one cout? I think it has something to do with the semicolons? Any help here?
Thanks!