题目类型:
问答题
题目内容
void main(){int a, b, k=4, m=6, *p1=&k, *p2=&m;a=(p1==p2);b=(*p1)/(*p2)+7;printf("a=%d,b=%d\n", a,b);}
正确答案
a=0,b=7