Exercise1 #1

Merged
SinusFox merged 4 commits from exercise1 into main 2023-05-03 16:56:59 +00:00
Showing only changes of commit 53fec3a674 - Show all commits
+2 -1
View File
@@ -1,6 +1,7 @@
#include <stdio.h>
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;\"");
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;
}