Number Rectangle Pattern Posted: 10 Dec 2013 06:28 AM PST Q. Write a C program to print the following number pattern rectangle as: 1 2 3 4 5 4 52 3 4 5 3 4 53 4 5 2 3 4 54 5 1 2 3 4 5 Ans. /*c program for number pattern rectangle design*/#include<stdio.h>int main(){ int n=4,num=5,p=4,r,c,z; for(r=1; r<=n; r++,p--) { for(c=r; c<=num; c++) printf(" %d",c); for(c=1,z=p; c<=r+1; c++,z++) printf(" %d",z); printf("\n"); } getch(); return 0;} /***********************************************************The output of above program would be: ************************************************************/
| Figure: Screen-shot for Number Rectangle Pattern C program |
|
Post a Comment