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> #include <stdio.h>
int main() { int main() {
int j = 1; int i = 3;
printf("Printing %i,\nalthough printing foxes is superior.", j); const char fox[4] = "FOX";
return 0;
printf("Printing ");
for (unsigned int j = 0; j < 3; j++) {
printf("%c", fox[j]);
}
printf(", Since they are better :P\n");
return 0;
} }