Question: C++.Write a void function that displays the left margin of the screen a solid square of a character whose side is specified in integer parameter
C++.Write a void function that displays the left margin of the screen a solid square of a character whose side is specified in integer parameter side. For example if the character is * and side is 5, the function displays
***** ***** ***** ***** *****
void display (char ch, int side) // all value formal parameters
{
}
You must prompt the user for these input values.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
