diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 06:18:03 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 06:18:03 +0000 |
commit | 37bcb7f8d0d2263960e4ee6d06ed0f17b7fb06ab (patch) | |
tree | 38450f3582ee727756dfae2a452fbfcbe790fddc /mario.c | |
parent | 7d09f9d7a764db546275f4a862e18974bd920dcd (diff) |
Thu, Nov 30, 2023, 10:18 PM -08:00
Diffstat (limited to 'mario.c')
-rw-r--r-- | mario.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,6 +4,9 @@ int main(void) { for (int i = 0; i < 3; i++) { - printf("#\n"); + for (int j = 0; j < 3; j++) { + printf("#"); + } + printf("\n"); } } |