以下程序运行后的输出结果是()
#include
int main()
{
int a=5,b=4,c=3,d;
d=(a>b>c);
printf("%d\n",d);
return 0;
}