Search results for barc2016

1 votes
1 answer
1
void fun(int *p) { int q = 10; p = &q; } int main() { int r = 20; int *p = &r; fun(p); printf("%d", *p); return 0; }
To see more, click for the full list of questions or popular tags.