单项选择题

以下程序执行后x的值是 main() { int x,y=252,i=386,*m=&y,*z=&i; x=(z==y); printf("%d",x);}

A.252
B.1
C.0
D.运行时出错,x无定值