#include void not_called(){ printf("Can you make this print?\n"); // Make this print forever, as an infinite loop } int main(){ /* You MUST complete this one without using call! */ // Change the 18 to something else to make it happen asm("lea 18(%rip), %rax \n" "push %rax \n" "jmp not_called "); return 0; }