ASCII art is a graphic design technique that uses computers for presentation and consists of pictures pieced together from the 95 printable (from a total of 128) characters defined by the ASCII Standard from 1963 and ASCII compliant character sets with proprietary extended characters. - https://en.wikipedia.org/wiki/ASCII_art
This assignment is intended to see if youve learned the basic concepts talked about thus far in the lectures.
This assignment is the starting foundation for an ASCII art drawing program.
Your program allows a user to draw an ASCII art image
Your program must provide 2 basic drawing features:
Your program must provide a function to draw/show the art.
When the program is executed:
1. Create an array to represent a 16 width by 9 height character image, initialize it whatever character(s) you wish
2. Set a default brush character
3. Provide a menu of functions for the user to select from:
4. The program will loop asking the user to select a menu choice and perform actions until they choose to quit.
5. The user selects an action by entering the letter specified in the list above (D.B,F,P,S,Q) lowercase letters should be useable as well as uppercase.
You can use the function toupper() or tolower()
http://www.cplusplus.com/reference/cctype/toupper/
or check explicitly for both cases