-
-
Save user21944/995646f21afc252b3ac697e6798b5d10 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(void) | |
{ | |
unsigned i, j; | |
for (i = 0; i < 26; ++i) { | |
for (j = 0; j < 26; ++j) printf("%c%c ", i + 97, j + 97); | |
} | |
putchar('\n'); | |
return EXIT_SUCCESS; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment