logo CodeStepByStep logo

box_of_stars

Language/Type: C parameters
Related Links:

Write a function named box_of_stars that accepts two integer parameters representing a width and height in characters, and prints to the console a 'box' figure whose border is * stars and whose center is made of spaces. For example, the call of box_of_stars(8, 5); should print the following output:

********
*      *
*      *
*      *
********

You may assume that the values passed for the width and height are at least 2.

Function: Write a C function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.