Skip to content

Instantly share code, notes, and snippets.

@miyakelp
Last active June 19, 2019 00:48
Embed
What would you like to do?
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