Exercise1 #1

Merged
SinusFox merged 4 commits from exercise1 into main 2023-05-03 16:56:59 +00:00
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;
}