单项选择题

以下程序的运行结果是()。
#include<stdio.h>
main()
int a=3,b=4,c=8,d=4,m=1,n=3;
printf("%d\n",(m=a>b)&&(n=c>d));

A. 0
B. 1
C. 2
D. 3