ANSWERS: 3
  • Since you're likely doing this as a school project, you should compose a proper question in proper English as a starting point. You didn't ask a question, as you wrote this; "How to design" is a statement, not a question. Try starting it with "How does one design...."
  • int row, col; for (row = 0; row < 10; row++) { for (col = 0; col < 15; col++) { printf("#"); } printf("backslash n"); } Note, replace "backslash n" with the backslash and 'n' characters.
  • uh, just use 2 loops, its really easy, loop through the columns in the inner loop, and the rows in the outer loop

Copyright 2023, Wired Ivy, LLC

Answerbag | Terms of Service | Privacy Policy