#include int e (int height_2, int width_3e, int width_4e) { int height_1 = height_2; int width_1e = width_3e; int width_2e = width_4e; while (height_2 != 0) { width_3e = width_1e; while (width_3e != 0) { printf("*"); width_3e--; } printf("\n"); height_2--; } while (height_2 != 0) { width_4e = width_2e; while (width_4e != 0) { printf("*"); width_4e--; } printf("\n"); height_2--; } int main (int argc, const char * argv[]) { int height_1 = 3; int width_1e = 15; int width_2e = 5; e (height_1, width_1e, width_2e); return 0; }