#include<stdio.h> int k=2; void fun(int *p){ p=&k; } int main( ) { int a=5,*p=&a; fun(p); printf("%d,%d\n",a,*p); return 0; }