Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c69e3ca5c5 | |||
| 83b9e0b48f |
@@ -1,7 +1,14 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int j = 1;
|
||||
printf("Printing %i,\nalthough printing foxes is superior.", j);
|
||||
return 0;
|
||||
int i = 70;
|
||||
|
||||
printf("Printing ");
|
||||
for (unsigned int j = i; j < 89; j += 9) {
|
||||
printf("%c", j);
|
||||
}
|
||||
|
||||
printf(", Since they are better :P\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user