Skip to content

Instantly share code, notes, and snippets.

@GZShi
Created April 27, 2013 06:03
Show Gist options
  • Save GZShi/5472056 to your computer and use it in GitHub Desktop.
Save GZShi/5472056 to your computer and use it in GitHub Desktop.
a letter
#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