Skip to content

Instantly share code, notes, and snippets.

@madson
Created October 21, 2011 14:38
Show Gist options
  • Save madson/1304001 to your computer and use it in GitHub Desktop.
Save madson/1304001 to your computer and use it in GitHub Desktop.
Thanks to Dennis Ritchie in C
#include <stdio.h>
int main() {
int codes[] = {
84, 104, 97, 110, 107, 115, 32, 68, 101, 110, 110,
105, 115, 32, 82, 105, 116, 99, 104, 105, 101, 33
};
int len = sizeof(codes)/sizeof(int);
for (int i = 0; i < len; i++)
printf("%c", (int)codes[i]);
return 0;
}
// Thanks Dennis Ritchie!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment