aaaaaa #3
@@ -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";
|
||||||
|
|
||||||
|
printf("Printing ");
|
||||||
|
for (unsigned int j = 0; j < 3; j++) {
|
||||||
|
printf("%c", fox[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
printf(", Since they are better :P\n");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user