diff options
-rw-r--r-- | mario.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ int main(void) { - const int n = 3; + int n = get_int("Size: "); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { printf("#"); |