#include void not_called(){ printf("Can you make this print?\n"); } int main(){ /* You MUST complete this one without using call! */ asm("lea 18(%rip), %rax \n" "push %rax \n" "jmp not_called "); printf("Can we skip this part?\n"); return 0; }