任何人都可以解释一下C中的_Bool和bool数据类型有什么区别?例如
_Bool x = 1; bool y = true; printf("%d", x); printf("%d", y);
c
c ×1