what's the difference between the following x86 code

后端 未结 0 1893
梦毁少年i
梦毁少年i 2020-12-18 08:11

I have the following C code:

void foo(int *p){
    *p = 5;
}
void test(){
    int p = 0;
    foo (&p);
}

However, I have a question about

相关标签:
回答
  • 消灭零回复
提交回复
热议问题