Reading
Chapter 1 - pay special attention to how printf() works.
Output Banana Slug Program Description
Write a program that outputs your first name in block letters 6 characters high. Follow that with a drawing of a Banana Slug - also at least 6 characters high. Follow that with a brief description (25 words or less) why computers are interesting.You do all of this by mapping out strings which will be drawn on the screen using the function printf(), the basic output function in the C library.
Follow the book's style. Make sure the program is properly commented. Comments should include your name, the date the program was written, the instructor and class name, and a brief description of the program. Test your program to ensure that the output prints correctly on the screen (compile it using gcc and run it).
HOMEWORK 1 GRADING OUTLINE
Style -- 4 points total
Correctness -- 4 points total
Overall appearance -- 2 points total
This is subjective. Points awarded for neatness, a
cool banana
slug, or maybe an interesting point in the description about
computers.
Deductions
Deduct 3 points if the program does not compile.
(use "gcc <filename.c>")