<
Contents
hide
Number Pattern 57-Rectangle pattern in C programming
In this program, we will see the Rectangle pattern numbers in C programming language. Please look into the program.
11111 10001 10001 10001 11111
The C program for Pyramid pattern is as follows:
#include<stdio.h> int main() { int a,b; for(a=1;a<=5;a++) { for(b=1;b<=5;b++) { if(b==5 || b==1 || a==1 || a==5) printf("1"); else printf("0"); } printf("n"); } getch(); return 0; }