Yeah, printing it out horizontally isn't quite as easy as printing it out vertically.
You'd have to print the whole thing (all letters together) row by row, since there's no (standard) way (as far as I can tell) of "backing up" the cursor after you've printed something.
You could possibly try considering each letter as a 5x5 block (where some characters are asterisks and the rest are spaces) which is just 5 rows of 5 characters each, like this:
*---*
**-**
*-*-*
*---*
*---* |
(Here the dashes represent the spaces.)
You want to take all of your letters and "glue" them together (in a sense), which basically means you just "glue" the top rows of all of the characters, then the second row, then the third, and so on.
Then you print each of the glued-together rows:
*---* ***** ***** ***** ***** ***** ***** ***** ***** ***** *****
**-** --*-- *---- *---- --*-- *---- *---- --*-- *---* *---* --*--
*-*-* --*-- ***** ***** --*-- ***** ***** --*-- ***** ***** --*--
*---* --*-- ----* ----* --*-- ----* ----* --*-- *---- *---- --*--
*---* ***** ***** ***** ***** ***** ***** ***** *---- *---- ***** |
An easier way, if you just need it to say "MISSISSIPPI", would be to just copy/paste that thing above (replacing dashes with spaces) and put it in one big
cout statement.
But then again, that wouldn't be any fun now, would it? :)