0

Reply to this note

Please Login to reply.

Discussion

/run c

#include

void f(){

return;

}

int main(){

int (*g)() = &((char*)f)[1];

printf("%d",g());

return 0;

}