aaaaaa #3
@@ -1,7 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int j = 1;
|
||||
printf("Printing %i,\nalthough printing foxes is superior.", j);
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user