填空题

以下程序运行后输出结果是______。
#include <stdio, h>
main( )
int a,b,c;
a=10; b:20; c=(a%b<1) ‖ (a/b>1);
printf("%d %d %d\n",a,b,c);

【参考答案】

10 20 0