符号知识点小记录:
#include<stdio.h>
int main()
{
int a = 1;
int b = 2;
int c = a||b;
int d = a&&b;
printf("%d\n,%d",c,d);//1,1
return 0;
}
1:关系操作符:
2:逻辑操作符:
//真,非0;假0;
3:"\n"转义字符,有换行的意思。
ING
标签:知识点,return,int,C语言,转义字符,初识,操作符,ING From: https://blog.51cto.com/u_15981668/6096529