Friday, 9 October 2015

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:  }  

No comments:

Post a Comment