I want the program to jump to a specific address in memory and continue execution from that address. I thought about using goto but I don\'t have a label rather
goto
It should look something like this:
unsigned long address=0x80; void (*func_ptr)(void) = (void (*)(void))address; func_ptr();
However, it is not a very safe operation, jumping to some unknown address will probably result in a crash!