以下程序运行后的输出结果是 【 8 】 。
#include <stdio.h>
main()
{ int x=20;
printf("%d ",0<x<20);
printf("%d\n",0<x && x<20); }