Hollow Rectangle Star Pattern Programming in C

Take value from the user and Print a Hollow Rectangle Star Pattern Programming in C In this program user input the symbol and value of Row and Column and get Output on the Screen. Let’s start to Run a Pattern program in C with Thesmolt

Display Hollow square star pattern in C using loops

/* C Program to Print Hollow Rectangle Star Pattern */

#include<stdio.h>

int main()
{
int i, j, rows, columns;
char Ch;

printf(“Please Enter any Symbol: “);
scanf(“%c”, &Ch);

printf(“\nPlease Enter the Number of rows: “);
scanf(“%d”, &rows);

printf(“\nPlease Enter the Number of Columns: “);
scanf(“%d”, &columns);

for(i = 1; i <= rows; i++)
{
for(j = 1; j <= columns; j++)
{
if(i == 1 || i == rows || j == 1 || j == columns)
{
printf(“%c“, Ch);
}
else
{
printf(” “);
}
}
printf(“\n“);
}
return 0;
}

User Inputted Pattern Program in C

Hollow Rectangle Star Pattern Programming in C
Hollow Rectangle Star Pattern Programming in C

Easy Pattern Program in C with Example

Hollow Rectangle Star Pattern Programming in C
Hollow Rectangle Star Pattern Programming in C

END

C program to draw a square using graphics (clickHere)

Take value from the user and Print a Rectangular Pattern

Note:- Maybe sometime above code doesn’t get user-friendly output, in codeblock ‘or’ any other EDITOR, All of C & C++ program tested in DOS compiler Turbo C.

Also Read

Types of functions in C    Read Here

I hope you will understand better if you study at M.U, in the exam of M.U you know how important this “Hollow Rectangle Star Pattern Programming in C” . So please don’t forget to give your valuable feedback. Go in the comment section and Give us some feedback about it. Hollow Rectangle Star Pattern Programming in C or My website.

Our team check your every Comment per day Because your one feedback helps us in growing Thesmolt

I request you if you have any doubt or question regarding our site, then please don’t hesitate. We always waiting for your Suggestion.

Note:- If you want to Download This article’s in PDF form, then simply go (Top or Bottom of) Right corner and click on the PRINT icon, and it’s saved as a PDF of  Hollow Rectangle Star Pattern Programming in C

For further questions, you can contact us Via mail [email protected]  otherwise, Our Help Page and Contact us Page, which is included below. I hope I’ll able to say all the possible ways to reach us. Or Download My Android Application Below Download Button.

thesmolt App

Leave a Reply

x