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