/run c

#include

void f(){

return;

}

int main(){

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

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

return 0;

}

Reply to this note

Please Login to reply.

Discussion

0

/run c

#include

void f(){

return;

}

int main(){

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

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

return 0;

}