C program to print hollow square or rectangle star pattern.
*****
* *
* *
* *
*****
Write a C program to print hollow square or rectangle star(*) pattern series using for loop. How to print hollow square or rectangle star pattern of N rows using for loop in C programming. Logic to print empty square or rectangle star pattern in C program.
Example
Input
Enter number of rows: 5
Output
***** * * * * * * *****