diff --git a/.gitignore b/.gitignore index 259148f..8907886 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,7 @@ *.exe *.out *.app +*.jar + +# VS Code +.vscode/ diff --git a/Exercise 1 - Hello World/C/ex1.c b/Exercise 1 - Hello World/C/ex1.c new file mode 100644 index 0000000..3cc7b8a --- /dev/null +++ b/Exercise 1 - Hello World/C/ex1.c @@ -0,0 +1,7 @@ +#include + +int main() { + char* sourcecode = "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;\""; + printf(sourcecode); + return 0; +}