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