问题详情
有以下程序:point(char*p) { *p=’d’; }main(){ char b[4]={’a’,’b’,’c’,’d’},*p=b; Point(p); printf("%c ",*p);}程序运行后的输出结果是()。A.a B.b C.c D.d