Page 1 of 1

PLEASE HELP ME!!! CODE THIS IN C PLEASE

Posted: Fri Jul 01, 2022 5:37 am
by answerhappygod
PLEASE HELP ME!!!
CODE THIS IN C PLEASE
Please Help Me Code This In C Please 1
Please Help Me Code This In C Please 1 (22.65 KiB) Viewed 29 times
Write a program in C that uses a function called printStars(n) where n is an ineteger provided by the user in the main() and it denotes the number of rows. PrintStars(n) then prints 2" asterisks until the n-th row if n is odd and prints 2n asterisks until the n-th row if n is even. Sample runs: Enter n: 5 Output: * * * * * * * * * Enter n: 4 * Output: * * * * *