// Prints a column of height n #include #include int main(void) { // Get height of column int n; do { n = get_int("Height: "); } while (n < 1); // Print column of bricks for (int i = 0; i < n; i++) { printf("#\n"); } }