Techknow_Study

right angle triangle

 right angle triangle

program:-

#include
#include
void main()
{
int i,j;
clrscr();
printf(“right angle tringle is\n”);
for(i=1;i<7;i++)
{
for(j=1;j<=i;j++)
{
printf(“*”);
}
printf(“\n”);
}
getch();
}

  • try for next questions………

Single Post Navigation

Leave a comment

Design a site like this with WordPress.com
Get started