#include<stdio.h>
int main()
{
int a=1,b=2;(注意&&使用时,俩边数为真数,0为假数,非0为真数,当下面(a&&b)其中一个为假数就打印不出来hehe这个整形)
if(a&&b)
{
printf("hehe\n");
}
return 0;
}
#include
int main()
{
int a=1,b=0;( (a||b)与上面&&不同,||只需要一个真数就可打印出来hehe假如俩个全是假数就打印不出)
if(a||b)
{
printf("hehe\n");
}
return 0;
}
#include
int main()
{
int a=10,b,c,d,g;
b=(c=a-1,d=c+3,g+d);
printf("%d\n",b);
return 0;
}