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