Merge pull request #1 from SinusFox/exercise1

Exercise1
This commit is contained in:
SinusFox
2023-05-03 18:56:59 +02:00
committed by GitHub
2 changed files with 11 additions and 0 deletions
+4
View File
@@ -30,3 +30,7 @@
*.exe
*.out
*.app
*.jar
# VS Code
.vscode/
+7
View File
@@ -0,0 +1,7 @@
#include <stdio.h>
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;
}