extracting the text to a var

This commit is contained in:
SinusFox
2023-05-03 18:55:17 +02:00
parent 27a6f71521
commit 53fec3a674
+2 -1
View File
@@ -1,6 +1,7 @@
#include <stdio.h> #include <stdio.h>
int main() { 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; return 0;
} }