Question
Emoticons Homework 1: Draw any figure (must have at least 11 lines of Printf commands) No obscene or derogatory remarks allowed either. Upload your code
Emoticons Homework 1: Draw any figure (must have at least 11 lines of Printf commands) No obscene or derogatory remarks allowed either. Upload your code to dropbox as a txt file.
Here is what my code would look like if we were doing Hello World /* First C program: Hello World */ // Leo Rodriguez // SSD xxxx //Due Date 9/5/18 #include int main(void) { printf("Hello World! "); /*program will print anything between (" ")*/ /* my processor does not recognize system(pause) so I had to use function below instead // --------------------------- system pause function ------------------------------ comment line starts with // char xyz; // pick a unique character not part of your program variables to store data while ((xyz = getchar()) != ' ' && xyz != EOF) { xyz = getchar(); // clears out the buffer getchar(); //waits for a keyboard entry to proceed } //--- end of system pause } //--- end of program
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started