Skip to content

Instantly share code, notes, and snippets.

@RyanJeong
Created August 11, 2019 07:57
Show Gist options
  • Save RyanJeong/18b6f865975be6ee392e36f3fbf7e3f1 to your computer and use it in GitHub Desktop.
Save RyanJeong/18b6f865975be6ee392e36f3fbf7e3f1 to your computer and use it in GitHub Desktop.
A program that prints itself
char* me; void main(void) {printf(me); putchar(13); putchar(34); printf(me); putchar(34); putchar(';');} char* me = 
"char* me; void main(void) {printf(me); putchar(13); puchar(34); printf(me); putchar(34); putchar(';');} char* me=";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment