#include <stdio.h>
int main()
{
int a = 1,b = 2;
int *aa = &a,*bb = &b;
int *cc = *aa //为什么这样会报错
*aa = *bb; //这样就不会报错呢
return 0;
}
奋斗1998
黄小凡
相关分类