#include int main(){ asm("jmp end;"); printf("Don't let this be printed!\n"); asm("end:"); printf("This should happen though\n"); return 0; }