C Programming

C Programming


How To Print E-Shape Pyramid In C

Posted: 28 Aug 2014 10:29 AM PDT

Q. How to print or wap to a E-Shape Pyramid in C language as?

*****
*
***
*
*****

Ans.

/*e-shape pyramid in c*/
#include<stdio.h>
int main()
{

 int num=5,r,c;
 for(r=1; r<=num; r++)
 {
   if(r%2==0)
      printf("*");
   else if(r%3==0)
   {
      for(c=1; c<=r; c++)
          printf("*");
   }
   else
   {
      for(c=1; c<=num; c++)
          printf("*");
   }
   printf("\n");
 }
 getch();
 return 0;
}

/***********************************************************
The output of above program would be:
***********************************************************/

Output of E-Shape Pyramid Program In C
Figure: Screenshot for E-Shape Pyramid Program In C


You might also like:

  1. Big list of 98+ C Pyramid Programs
  2. Big list of 100+ C Pyramid Programs


Post a Comment