#include<stdio.h>int a=10,b=20;void go(int *p){p=&b;}void main(){go(&a);printf("%d",a);}这段代码 把p=&b改成 *p=b就能改变a的值为甚么呀
___C___
LWL20201104
相关分类