summaryrefslogtreecommitdiff
path: root/mario.c
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 06:15:02 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 06:15:02 +0000
commit7d09f9d7a764db546275f4a862e18974bd920dcd (patch)
treea44e98714f2afa903ae067eecc3c0c2177e9760b /mario.c
parentc5ce0e1840886d47003b4070f9fc4c3c672af6ee (diff)
Thu, Nov 30, 2023, 10:15 PM -08:00
Diffstat (limited to 'mario.c')
-rw-r--r--mario.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/mario.c b/mario.c
index 689e6d5..595b7e1 100644
--- a/mario.c
+++ b/mario.c
@@ -3,8 +3,7 @@
int main(void)
{
- for (int i = 0; i < 4; i++) {
- printf("?");
+ for (int i = 0; i < 3; i++) {
+ printf("#\n");
}
- printf("\n");
}