printf(".---.\n");
printf("___ /_____\\ \n");
printf("/\\.-`( '.' ) *BANG*");
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!
can you not just do this for each line
my_array[3] = {'\','-','/'}; // or whatever the chars are
printf(&my_array);
Plus can you do a printf like that? As it requires a const char * as the first argument followed by the values to insert into the format.