#include int main (int argc, const char * argv[]) { int height; int width = 1; int width_1 = width; printf("Please enter a number for the height: "); scanf("%d", &height); while (height != 0) { width_1 = width; while (width_1 != 0) { printf("*"); width_1--; } printf("\n"); height--; width++; } return 0; }