summaryrefslogtreecommitdiff
path: root/wk1/pset1/mario-more/mario.c
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-03 09:58:24 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-03 09:58:24 +0000
commit89bc1572902cf2081368ad755008a65bdedeff40 (patch)
tree020d5a1b4b5279614380d617e35e0ef710025dd4 /wk1/pset1/mario-more/mario.c
parent74740e62bc80dc177280a69d4c743ad2d9845883 (diff)
Sun, Dec 3, 2023, 1:58 AM -08:00
Diffstat (limited to 'wk1/pset1/mario-more/mario.c')
-rw-r--r--wk1/pset1/mario-more/mario.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c
index fd261b3..9ba12b8 100644
--- a/wk1/pset1/mario-more/mario.c
+++ b/wk1/pset1/mario-more/mario.c
@@ -29,8 +29,9 @@ void print_grid(size)
{
for (int j = 0; j < size; j++)
{
+ if
printf("#");
- }
+ }
printf("\n");
}
}