#include <stdio.h>
void draw_stars(int n);
int main()
{
draw_stars(3);
}
void draw_stars(int n)
{
if(n < 1) return;
int i;
for (i = 0; i < n; i++)
{
printf("*");
}
printf("\n");
draw_stars(n - 1);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: