C Ascii Art

Associate
Joined
28 Feb 2009
Posts
519
Is it possible to print ascii art in C? I want the code to print a Man but the character in the man count as control symbols is it possible to get the complie to ignore them?
 
I want to print this though
.---.
___ /_____\
/\.-`( '.' ) *BANG*
/ / \_-_/_
\ `-.-"`'V'//-.
`.__, |// , \
|Ll //Ll|\ \
|__// | \_\
/---|[]==| / /
\__/ | \/\/
/_ | Ll_\|
|`^"""^`|
| | |
| | |
| | |
| | |
L___l___J
|_ | _|
(___|___)
^^^ ^^^
I there away of saying print all the following characters!
 
If you want to be adventurous you can stick your art in a file then open the file and print the contents to the console. Although you will still have to parse the contents for escape sequences and deal with them so they are displayed correctly.

Hmm that sounds a lot easier. I think ill try that instead!
 
Back
Top Bottom