Skip to content

Instantly share code, notes, and snippets.

@qtip
Created December 12, 2013 22:47
Show Gist options
  • Save qtip/7936949 to your computer and use it in GitHub Desktop.
Save qtip/7936949 to your computer and use it in GitHub Desktop.
#include <stdio.h>
char msg[] = { 0x41, 0x6D, 0x65, 0x72, 0x69, 0x63, 0x61, 0x20, 0x43, 0x61, 0x6E, 0x20, 0x43, 0x6F, 0x64, 0x65, 0x20 };
int main(void){
printf("%s\n", msg); // output: America Can Code
return 0;
}
@kmanna
Copy link

kmanna commented Dec 12, 2013

oh snap.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment