执行下列程序段后的输出结果是(        )。 int a=3,b=4,c; c=a; if(a>b) c=1; else if(a==b) c=0;else c=-1; printf("c=%d\n",c); A.

c=1 B.

c=0 C.

c=-1 D.

c=3