#include #include int get_int_range(string prompt); // making a prototype for our get int function void print_lots(string character,int n); // prototype for printing repeated characters in a line int main(void) { int height = get_int_range("Height between 1 and 8:"); for (int k=0; k8); return n; } void print_lots(string character,int n) // define a function to print the same character a bunch { for(int i=0; i