summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 06:13:26 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-01 06:13:26 +0000
commitc5ce0e1840886d47003b4070f9fc4c3c672af6ee (patch)
tree578b78f3e71d876b31ae985b96c3a38325a18b10
parent41b7c5b9baa1e903f2841ae032d800a10809bfb0 (diff)
Thu, Nov 30, 2023, 10:13 PM -08:00
-rw-r--r--mario.c10
-rw-r--r--pset1/mario.c2
2 files changed, 11 insertions, 1 deletions
diff --git a/mario.c b/mario.c
new file mode 100644
index 0000000..689e6d5
--- /dev/null
+++ b/mario.c
@@ -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)
{
-
+
}