Write a C function void print_triangle(int n) that prints a triangular pattern of asterisks of height n and width 2 * n + 1 with one asterisk in the first line, three in the second line, etc., ending with the nth line of 2 * n + 1 asterisks. The pattern corresponding to n = 5 is shown below. Use for loops to generate the pattern. Each asterisk must be printed by a single printf(" * "); statement.