1: //*****
2: // ****
3: // ***
4: // **
5: // *
6: #include<stdio.h>
7: #include<conio.h>
8: void main()
9: {
10: int i, j, k, row;
11: clrscr();
12: printf("Enter the number of rows you want:\n");
13: scanf("%d",&row);
14: for(i=row;i>=1;i--)
15: {
16: for(j=row;j>i;j--)
17: {
18: printf(" ");
19: }
20: for(k=1;k<=i;k++)
21: {
22: printf("*");
23: }
24: printf("\n");
25: }
26: getch();
27: }
getsprogramming Tutorials , C Programming, CPP Programming and JAVA Programming , Python Programming , Javascript Programming Welcome to getsprogramming Blog Here You Find Different Programs in Easier way to Explain and gain Knowledge and Try Your Self..Thanks
Showing posts with label patternprogram. Show all posts
Showing posts with label patternprogram. Show all posts
Friday, 9 October 2015
Write a C Program To Print Pattern4
Write a C Program To Print Following Pattern
1: // WAP to print following pattern
2: //*****
3: //****
4: //***
5: //**
6: //*
7: #include<stdio.h>
8: #include<conio.h>
9: void main()
10: {
11: int row,i,j;
12: clrscr();
13: printf("Enter the number of rows you want: \n");
14: scanf("%d",&row);
15: for(i=row;i>=1;i--)
16: {
17: for(j=1;j<=i;j++)
18: {
19: printf("* ");
20: }
21: printf("\n");
22: }
23: getch();
24: }
Subscribe to:
Posts (Atom)