Skip to content

Instantly share code, notes, and snippets.

@aprell
Created March 25, 2014 18:39
Show Gist options
  • Save aprell/9768368 to your computer and use it in GitHub Desktop.
Save aprell/9768368 to your computer and use it in GitHub Desktop.
A simple quine in C
char *q = "char *q = %c%s%c; int main(void) { printf(q, 34, q, 34); return 0; }"; int main(void) { printf(q, 34, q, 34); return 0; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment