Friday, August 1, 2014

c program

         print the following pattern in c
                *****
                  ****
                    ***
                      **
                        *

#include<stdio.h>
#include<conio.h>
main()
  {
     int i,j;
        for(i=0;i<5;i++)
            {
                  for(j=0;j<5;j++)
                       {
                            if(j<=i-1)
                              printf("  ");
                            else
                              printf("*");
                              }
                      printf("\n");
                }
   getch();
}

No comments:

Post a Comment

Featured Post

What is JavaScript? What is the role of JavaScript engine?

  The JavaScript is a Programming language that is used for converting static web pages to interactive and dynamic web pages. A JavaScript e...