Q) Write a PROGRAM to generate the following triangle :-
# # # # #
# # # #
# # #
# #
#
# # # # #
# # # #
# # #
# #
#
Sol)
#include<stdio.h>
#include<conio.h>
int main( )
{
int num, r=1, c, sp ;
printf(" Enter loop repeat number(rows): ") ;
scanf("%d",&num);
for( ; num>=1;num--,r++)
{
for(sp=r; sp>1; sp--)
printf(" ");
for(c=1; c<=num; c++)
printf("#") ;
printf("\n");
}
return 0;
}
No comments:
Post a Comment