Skip to content

Instantly share code, notes, and snippets.

@cosinekitty
Created November 7, 2019 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosinekitty/10a0b1e2c0c5d7b57c1952fc4d5b9eb5 to your computer and use it in GitHub Desktop.
Save cosinekitty/10a0b1e2c0c5d7b57c1952fc4d5b9eb5 to your computer and use it in GitHub Desktop.
Not quite a quine
#include <stdio.h>
int main()
{
printf("#include <stdio.h>\n");
printf("int main()\n");
printf("{\n");
printf(" return 0;\n");
printf("}\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment