c program to print this pattern
Answers
Answered by
1
//using c programming Language
#include<stdio.h>
#include<conio.h>
void main()
{
int I,J;
for (I=1;I<=5;I++)
{
for (j=1;j<=i;j++)
{
printf("*");
}
}
getch();
}
Similar questions