Computer Science, asked by isatyam4545, 11 months ago

c program to print this pattern​

Answers

Answered by Mukeshgorain338
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