scanf("%d", &rows); // Read the input from the user and store it in rows for (i = 1; i <= rows; i++) // Loop from 1 to rows for (j = 1; j <= i; j++) // Loop from 1 to i ...