From fbdad7aa966e7717cceba766b2ff3f35457ac907 Mon Sep 17 00:00:00 2001 From: Austin Anker Date: Sat, 23 Mar 2024 14:28:12 -0500 Subject: [PATCH] C Challenge 0 (Unreviewed) --- challenge_0/c/cybertitan06/README.md | 7 +++++++ challenge_0/c/cybertitan06/src/helloworld.c | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 challenge_0/c/cybertitan06/README.md create mode 100644 challenge_0/c/cybertitan06/src/helloworld.c diff --git a/challenge_0/c/cybertitan06/README.md b/challenge_0/c/cybertitan06/README.md new file mode 100644 index 000000000..17bdab796 --- /dev/null +++ b/challenge_0/c/cybertitan06/README.md @@ -0,0 +1,7 @@ +My submission for the Hello World challenge. + +Compile with gcc helloworld.c -o helloworld + +Run with ./helloworld + +Will print out the phrase "Hello World!" \ No newline at end of file diff --git a/challenge_0/c/cybertitan06/src/helloworld.c b/challenge_0/c/cybertitan06/src/helloworld.c new file mode 100644 index 000000000..9f46f385d --- /dev/null +++ b/challenge_0/c/cybertitan06/src/helloworld.c @@ -0,0 +1,5 @@ +#include + +int main (void){ + printf("Hello World!\n"); +} \ No newline at end of file