初识C语言3/2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初识C语言3/2相关的知识,希望对你有一定的参考价值。

符号知识点小记录:

#include<stdio.h>
int main()

int a = 1;
int b = 2;
int c = a||b;
int d = a&&b;
int max = (a>b?a:b);
printf("%d,%d,\\n%d",c,d,max);//1,1
return 0;



1:关系操作符:

初识C语言3/2_操作符

2:逻辑操作符:

     “&&”“||”/真,输出“1”,非0值;假,输出“0”,值是0;

    " 表达式1?表达式2:表达式3“-----如果表达式1为真,2会被执行,为假,3会被执行;


初识C语言3/2_#include_02

3:"\\n"转义字符,有换行的意思。

ING

以上是关于初识C语言3/2的主要内容,如果未能解决你的问题,请参考以下文章

C语言进阶4——指针的进阶

初识C语言

初识C语言

第初识C语言

初识C语言(Ⅰ)

初识C语言 ——“C Primer Plus”