C Programming

C Programming


Nested 1 Type Symbol Pyramid

Posted: 03 Apr 2014 04:58 AM PDT

Q. Write a nested single symbol pyramid C program as:

#
#
##
##
###
###
####
####

Ans.

/*c program for nested single symbol pyramid*/
#include<stdio.h>
int main()
{
 int num,r,c,z;
 printf("Enter Maximum Loop Repeat Number: ");
 scanf("%d", &num);

 for(r=1; r<=num; r++)
 {
  for(c=1; c<=2; c++)
  {
   for(z=1; z<=r; z++)
      printf("#");
   printf("\n");
  }
 }
 getch();
 return 0;
}

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


Output for nested Single Symbol Pyramid C program
Figure: Screen shot for nested Single Symbol Pyramid C program


Related Programs:




Post a Comment