Skip to content

Instantly share code, notes, and snippets.

@Qix-
Created May 7, 2017 03:05
Show Gist options
  • Save Qix-/652fd1f6d25efd70252cc6294f7b3516 to your computer and use it in GitHub Desktop.
Save Qix-/652fd1f6d25efd70252cc6294f7b3516 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
static const char * LOL =
"you should have expected this to get out of hand, Sindre. πŸ’ƒπŸ˜ˆ\n"
"this is almost entirely your fault!! πŸ™ˆπŸ’© WY<.< h[+}Q"
"<.< <.< X-*%)1P<.< _QX<.< <.< H18\xC3P0 lol πŸ˜πŸ–– ball's in your"
"court now. <.<";
int main(void) {
puts(((char*(*)(char*))(LOL))(strdup(LOL)));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment