diff --git a/Exercise 1 - Hello World/C/ex1.c b/Exercise 1 - Hello World/C/ex1.c new file mode 100644 index 0000000..1223597 --- /dev/null +++ b/Exercise 1 - Hello World/C/ex1.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello World the second - I coded this before. So yeah, FOXES ARE SUPERIOR.\nBut the professor wants us to write the following: \"index = 2 * count + 42;\""); + return 0; +}