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 | |
parent | 41b7c5b9baa1e903f2841ae032d800a10809bfb0 (diff) |
Thu, Nov 30, 2023, 10:13 PM -08:00
-rw-r--r-- | mario.c | 10 | ||||
-rw-r--r-- | pset1/mario.c | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -0,0 +1,10 @@ +#include <stdio.h> +#include <cs50.h> + +int main(void) +{ + for (int i = 0; i < 4; i++) { + printf("?"); + } + printf("\n"); +} diff --git a/pset1/mario.c b/pset1/mario.c index 27dc706..236a513 100644 --- a/pset1/mario.c +++ b/pset1/mario.c @@ -3,5 +3,5 @@ int main(void) { - + } |