aaaaaa #3

Open
SinusFox wants to merge 2 commits from github/fork/MCWertGaming/patch-1 into main
Showing only changes of commit 83b9e0b48f - Show all commits
+11 -3
View File
@@ -1,7 +1,15 @@
#include <stdio.h>
int main() {
int j = 1;
printf("Printing %i,\nalthough printing foxes is superior.", j);
return 0;
int i = 3;
const char fox[4] = "FOX";
printf("Printing ");
for (unsigned int j = 0; j < 3; j++) {
printf("%c", fox[j]);
}
printf(", Since they are better :P\n");
return 0;
}