Menu BAR

FEEL FREE TO ASK ANY PROGRAM and please mention any error if you find it

17 Jan 2013

Number Pyramid 5

Q.) Write a program to generate a following triangle :-


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

Sol)

#include<stdio.h>
#include<conio.h> 

int main( )

{
int num, r, c;

printf("Enter loop repeat number(rows): " );

scanf("%d", &num) ;

for (r=1; num>=r; r++)
 { 
      for(c=1; c<=r; c++)
               printf("#") ;
      printf("\n") ;    
}

return 0 ;

}

No comments:

Post a Comment