Question: Create a C program that prints a banner with a logo of your own creation. The banner must print to the terminal as a rectangle
Create a C program that prints a banner with a logo of your own creation.
The banner must print to the terminal as a rectangle fourteen lines by forty columns
The program must only use the printf function to print characters to the screen
The first line of the banner must include your name and the last four digits of your student ID Leave out any leading zeros in your last four digits Use an int type variable to hold the value of the student ID
Use a d format tag to pass the variable to the printf function
Beware of using the backslash character as part the string that you print.
The backslash is used to "escape" nonprintable characters.
Beware of using the percent character as part the string that you print.
The percent character is used to define format specifiers for variables passed to printf
The program must use stdio.h but no other header files may be included
All statements must be in the main function. No other functions should be in the program
The main function should be declared to return an int data type and it should return a value of zero when it is done.
The top of the file should include a comment section with:
Name
Date
Assignment #
Course information
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
