initial push README.md #2

Merged
SinusFox merged 2 commits from main into exercise1 2023-05-09 10:33:00 +00:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 4b79750ab6 - Show all commits
+4
View File
@@ -30,3 +30,7 @@
*.exe *.exe
*.out *.out
*.app *.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;
}