diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 06:13:26 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 06:13:26 +0000 |
commit | c5ce0e1840886d47003b4070f9fc4c3c672af6ee (patch) | |
tree | 578b78f3e71d876b31ae985b96c3a38325a18b10 /mario.c | |
parent | 41b7c5b9baa1e903f2841ae032d800a10809bfb0 (diff) |
Thu, Nov 30, 2023, 10:13 PM -08:00
Diffstat (limited to 'mario.c')
-rw-r--r-- | mario.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#include <stdio.h> +#include <cs50.h> + +int main(void) +{ + for (int i = 0; i < 4; i++) { + printf("?"); + } + printf("\n"); +} |