1.下列程序的输出结果是( )#include <stdio.h> void main() { int a = 2, b = 3, c = 0, d; d = !a && !b ||!c; printf(“%d\n”, d); }a.1 b.0 c.编译出错 d.-1