这句话说明了什么 请解释一下 if(!(!x) && x)
if(!(!x) && x)
#include<stdio.h> int main(){ int x=5, y=10; if(!(!x) && x) printf("%d",x); else printf("%d",y); return 0; }
c
c ×1