From 27a6f71521252cd2ee2304a9aa0d7674fbca232c Mon Sep 17 00:00:00 2001 From: SinusFox Date: Wed, 3 May 2023 18:30:26 +0200 Subject: [PATCH] upload of Exercise 1 --- Exercise 1 - Hello World/C/ex1.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Exercise 1 - Hello World/C/ex1.c 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; +}