Created
April 27, 2013 06:03
-
-
Save GZShi/5472056 to your computer and use it in GitHub Desktop.
a letter
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> | |
char content[] = { | |
214, 247, 210, 170, 190, 205, 202, 199, 207, 235, | |
202, 212, 202, 212, 184, 248, 212, 219, 195, 199, | |
188, 196, 208, 197, 202, 177, 181, 216, 214, 183, | |
191, 201, 210, 212, 208, 180, 181, 195, 182, 224, | |
188, 242, 194, 212, 161, 173, 161, 173, 0 | |
}; | |
int main(void) { | |
int i = 0; | |
while(content[i] != 0) | |
putchar(content[i++]); | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment