/*=======================================================================*/ #define PROGRAMMER "SOLUTIONS, Nofrills" #define PROG_CODE "SOLN" #define COURSE "ECE-1021" #define YEAR (2004) #define TERM "Fall" #define SECTION (0) #define ASSIGNMENT "HW#0" #define REVISION (0) #define TITLE "Hello World!" #define SUBTITLE "Last Modified on 16 AUG 04" #define EMAIL "ece1021@eas.uccs.edu" #define FILENAME "0_0SOLN0.txt" /*=======================================================================*/ /*=======================================================================*/ /* NOTES TO THE USER/GRADER */ /*=======================================================================*/ /* */ /*=======================================================================*/ /* PROBLEM STATEMENT */ /*=======================================================================*/ /* Write a program that, using only putc() generates the following message on the screen: Hello World! My Code's "SOLN" This message followed the output of PrintHeader() and is lined up on the left with it. */ /*=======================================================================*/ /* DEVELOPMENT NOTES */ /*=======================================================================*/ /* Must use \' to print a single quote. Choose to use \" to print a double quote. */ /*=======================================================================*/ /* PSEUDOCODE */ /*=======================================================================*/ /* 1) TASK: Print First Line 1.1) PUT: Two spaces to line up left edge with header 1.2) PUT: Hello World! (use code from Programming Lesson #1) 2) TASK: Print Second Line 2.1) PUT: Two spaces to line up left edge with header 2.2) PUT: My ID's "SOLN" (use \' and \" to print quotes) */ /*=======================================================================*/ /* END OF PSEUDO CODE FILE */ /*=======================================================================*/