summaryrefslogtreecommitdiff
path: root/wk1/pset1/mario-more
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-04 03:17:25 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-04 03:17:25 +0000
commita7c36b5e6dadc0ed9429f570d96cd1ac35212c43 (patch)
tree2f7a81c23418a4a7dff788807933dbb7029b8e70 /wk1/pset1/mario-more
parente4e284998484f54384c7d14d742786dafa21ef02 (diff)
Sun, Dec 3, 2023, 7:17 PM -08:00
Diffstat (limited to 'wk1/pset1/mario-more')
-rw-r--r--wk1/pset1/mario-more/mario.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c
index 4bc2183..810048a 100644
--- a/wk1/pset1/mario-more/mario.c
+++ b/wk1/pset1/mario-more/mario.c
@@ -33,7 +33,7 @@ void print_grid(size)
{
if ((size - (j + i)) > 1)
{
- printf(" ");
+ printf("!");
}
else
{
@@ -46,7 +46,7 @@ void print_grid(size)
}
else
{
- printf(" ");
+ printf("!");
}
}
printf(" ");