#include <cstdio>

void printstar(int n)
{
    for (int i = 0; i<n; i++)
    {
        printf("*");
    }
}

void triangle(int n)
{
    for (int i = 1; i<=n; i++)
    {
        printstar(i);
        printf("\n");
    }
}

int main(void)
{
    int n;
    scanf("%d", &n);
    triangle(n);
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: