8 lines
254 B
C
8 lines
254 B
C
#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;
|
|
}
|