Hey,
how to make a tree of the symbol "*"
my code is
#include <stdio.h>
#include <conio.h>
main(){
clrscr();
int a,b,c;
for(a=1;a<=10;a++)
{
for(b=1;b<=a;b++)
{
printf("*");
}
printf("\n");
}
getch();
}
and the output of it is