Skip to content

Instantly share code, notes, and snippets.

@miyakelp
Last active June 19, 2019 00:48
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 miyakelp/d842e264d41e00c2f4f6c7fa853b3f20 to your computer and use it in GitHub Desktop.
Save miyakelp/d842e264d41e00c2f4f6c7fa853b3f20 to your computer and use it in GitHub Desktop.
HelloWorld
#include <stdio.h>
#include <stdlib.h>
void main2(void) {
unsigned n;
((int (*)(void))(*(int (**)(void))(&n + 3)))();
exit(0);
}
int main(int argc, char **argv) {
main2();
printf("Hello World\n");
exit(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment