c语言语言教程0基础_C语言基础

c语言语言教程0基础

Hey, Folks here I am back with my second article on C language. Hope you are through with my previous article C language - History, Popularity reasons, Characteristics, Basic structure etc. In this one, I will cover some fundamental concepts of C Language namely Variables, Tokens, Operators in C language.

嘿,伙计们,我回来了第二篇有关C语言的文章。 希望您能读完我以前的C语言文章-历史,流行原因,特征,基本结构等 。 在这一篇中,我将介绍C语言的一些基本概念,即C语言中的变量,标记,运算符

Let’s get started...

让我们开始吧...

1)变量 (1) Variables)

They are temporary memory locations allocated during execution of the program. As the name suggests it is an entity whose value may change during program execution.

它们是在程序执行期间分配的临时内存位置。 顾名思义,它是一个在程序执行期间其值可能会更改的实体。

Rules for variable name

变量名规则

  1. It does not have a space between characters.

    字符之间没有空格。

  2. Collection of alphabets, digits, and underscore (_).

    字母,数字和下划线(_)的集合。

  3. The first character should be either alphabet or underscore (_).

    第一个字符应为字母或下划线(_)。

  4. No other special symbol except underscore (_).

    除下划线(_)外,没有其他特殊符号。

  5. Keywords cannot be used as variable name.

    关键字不能用作变量名。

Declaration of variable

变量声明

Syntax:

句法:

datatype variable_name;

Example:

例:

int a;

It tells the user what is the data type of a declared variable or what type of values it can hold.

它告诉用户声明的变量的数据类型是什么或它可以保存的值的类型。

Initialization of a variable

初始化变量

The process of assigning any value to any variable.

将任何值分配给任何变量的过程。

Example:

例:

int a = 5;

2)代币 (2) Token)

The basic and smallest unit of C program is token.

C程序的基本最小单位是令牌。

Token includes :

令牌包括:

  1. Keywords

    关键词

  2. Identifier

    识别码

  3. Constants

    常数

  4. String Constant

    字符串常量

  5. Operators

    经营者

  6. Special Symbols e.g: _ , @ , *

    特殊符号,例如:_,@,*

1) Keywords or Reserve words

1)关键字或保留字

These are those words whose meaning is already explained to the compiler.

这些是已经向编译器解释其含义的单词。

They can’t be used as a variable name because if we do so that means we are defining the new meaning to the compiler which the compiler does not allow.

它们不能用作变量名,因为如果这样做,则意味着我们正在为编译器定义编译器不允许的新含义。

2) Identifier

2)识别码

They are the name given to programming elements such as array, function, variable. Same rules as of variable name.

它们是诸如数组,函数,变量之类的编程元素的名称。 与变量名相同的规则。

3) Constant

3)常数

Entities whose value does not during the execution of a program.

其值在程序执行期间不存在的实体。

4) String constant

4)字符串常量

Collection of character enclosed by a double inverted comma. e.g.: "abc"

用双反逗号括起来的字符的集合。 例如: “ abc”

5) Operators

5)运营商

They are used to perform arithmetic and logical operations by ALU.

它们由ALU用于执行算术和逻辑运算。

Example:

例:

 a+b

Here, a and b are operands and + is an operator.

在这里, a和b是操作数,而+是运算符。

C language has very rich operators. Many different types of operators are available in C language for different mathematical computations.

C语言具有非常丰富的运算符。 C语言提供了许多不同类型的运算符,用于不同的数学计算。

They are mainly of three types:

它们主要分为三种类型:

Types of operators

Operators itself is a separate topic which needs to be covered in detail.

运营商本身是一个单独的主题,需要详细介绍。

So, here we get started.

所以,我们开始。

Unary operators

一元运算符

They require only one operand for execution, it includes :

它们只需要一个操作数即可执行,其中包括:

  1. Unary minus

    一元减

  2. Bitwise compliment

    按位赞美

  3. Logical Not

    逻辑不

  4. Increment / Decrement

    增量/减量

  5. sizeof() operator

    sizeof()运算符

sizeof() Operator

sizeof()运算符

It is used to return the size of an operand. It can be applied on variable, constant, datatype.

它用于返回操作数的大小。 它可以应用于变量,常量,数据类型。

Syntax:

句法:

sizeof(operand);

Example:

例:

    int a=2, b;
b = sizeof(a);
//or
b = sizeof(int);
//or
b = sizeof(5);
printf("%d\n",b);
//All of the 3 three statements will give same output.

Ternary operators

三元运算符

They are also called conditional operator. For these operators, we require 3 operands for execution. There is only and one ternary operator in C language.

它们也称为条件运算符。 对于这些运算符,我们需要3个操作数来执行。 用C语言只有一个三元运算符。

Syntax:

句法:

 expression_1  ? expression_2 : expression_3 ;

If expression_1 is true expression_2 gets executed, if false then expression_3.

如果expression_1为true,则执行expression_2 ,如果为false,则执行expression_3 。

Example:

例:

    int a=4 , b=7 , c;
c = ( a<7 ? a:b );
printf("%d\n", c );

Output

输出量

 4

Since, a = 4, exp_1 is true and therefore exp_2 gets executed. So, c = a gets executed.

由于a = 4 , exp_1为true,因此exp_2被执行。 因此, c = a被执行。

Binary operators

二元运算符

i) Arithmetic operators

i)算术运算符

Operator nameOperator
Addition+
Subtraction-
Multiplication*
Division/
Modulus%
操作员姓名 操作员
加成 +
减法 --
乘法 *
/
模量

Modulus operator gives remainder and division operator gives quotient. All arithmetic operators can be used for integer and float values except modulus which is used for integers only.

模运算符给出余数,除法运算符给出商。 除模数仅用于整数外,所有算术运算符均可用于整数和浮点值。

b) Relational operators

b)关系运算符

They are used for comparison between two values. They return result as true or false.

它们用于两个值之间的比较。 它们返回结果为true或false。

Operator nameOperator
Less than<
Less than or equal to<=
Greater than>
Greater than or equal to>=
Equal to ==
Not equal to !=
操作员姓名 操作员
少于 <
小于或等于 <=
比...更棒 >
大于或等于 > =
等于 ==
不等于 !=

c) Logical operators

c)逻辑运算符

Used to combine two relational expression and they returns result as true or false.

用于组合两个关系表达式,它们返回结果为true或false。

ABA && BA || B!A
00001
01011
10010
11110
一个 A && B A || 乙 !一个
0 0 0 0 1个
0 1个 0 1个 1个
1个 0 0 1个 0
1个 1个 1个 1个 0

d) Bitwise operators

d)按位运算符

They are used to perform operation on individual bits. They can be applied on char and int.

它们用于对单个位执行操作。 它们可以应用于char和int 。

OperatorsSymbol nameMeaning
&AmpersandBitwise AND
|PipeBitwise OR
^CaretBitwise X OR
~TildeBitwise compliment
<<Double less thanLeft shift operator
>>Double greater thanRight shift operator
经营者 符号名称 含义
&符 按位与
| 按位或
^ 插入符号 按位X OR
蒂尔德 按位赞美
<< 少于两倍 左移运算符
>> 大于 右移运算符

C Operator Precedence Table:

C运算符优先级表:

This page lists C operators in order of precedence (highest to lowest). Their associativity indicates in what order operators of equal precedence in an expression are applied.

本页按优先顺序(从高到低)列出C运算符。 它们的关联性指示在表达式中应用相同优先级的运算符的顺序。

C Operator Precedence Table

翻译自: https://www.includehelp.com/c/basics-of-c-language.aspx

c语言语言教程0基础

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377151.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《MySQL——临时表》

内存表与临时表区别 临时表&#xff0c;一般是人手动创建。 内存表&#xff0c;是mysql自动创建和销毁的。 内存表&#xff0c;指的是使用Memory引擎的表&#xff0c;建表语法&#xff1a;create table ... engine memeory 表的数据存在内存里&#xff0c;系统重启后会被清…

android中ActionBar的几个属性

actionBar.setHomeButtonEnabled //小于4.0版本的默认值为true的。但是在4.0及其以上是false&#xff0c;该方法的作用&#xff1a;决定左上角的图标是否可以点击。没有向左的小图标。 true 图标可以点击 false 不可以点击。 actionBar.setDisplayHomeAsUpEnabled(true) //…

drei

模拟9 T3 &#xff08;COGS上也有&#xff0c;链接http://218.28.19.228/cogs/problem/problem.php?pid1428&#xff09; 题目描述 输入a&#xff0c;p&#xff0c;求最小正整数x&#xff0c;使得a^x mod p 1。 分析 神奇的欧拉定理&#xff08;对于gcd&#xff08;a&#xf…

《MySQL——group by使用tips》

1、如果对group by语句结果没有排序要求&#xff0c;在语句后面加order by null 2、尽量让group by 过程用上索引&#xff0c;确认方法是explain结果里没有Using temporary 和Using filesort 3、如果group by 需要统计的数据量不大&#xff0c;尽量只使用内存临时表&#xff…

css中变量_CSS中的变量

css中变量CSS | 变数 (CSS | Variables) CSS variables allow you to create reusable values that can be used throughout a CSS document. CSS变量允许您创建可在CSS文档中使用的可重用值。 In CSS variable, function var() allows CSS variables to be accessed. 在CSS变…

位图像素的颜色 携程编程大赛hdu

位图像素的颜色 Time Limit: 2000/1000 MS (Java/Others) MemoryLimit: 32768/32768 K (Java/Others) Total Submission(s): 0 Accepted Submission(s): 0 Problem Description 有一个在位图上画出矩形程序&#xff0c;一开始位图都被初始化为白色&#xff08;RGB颜色表示…

《MySQL——InnoDB与Memory以及临时表》

InooDB与Memory 数据组织方式不同&#xff1a; InnoDB引擎把数据放在主键索引上&#xff0c;其他索引上保存的是主键id。为索引组织表Memory引擎把数据单独存放&#xff0c;索引上保存数据位置。为堆组织表 典型不同处&#xff1a; 1、InnoDB表的数据总是有序存放的&#x…

Oracle 用户 profile 属性 转

--查看profile 内容 select * from dba_profiles where profilePF_EAGLE; --查看用户的profiles select username,profile from dba_users; --查看是否启用动态资源限制参数 SHOW PARAMETER RESOURCE_LIMIT; --启用限制 ALTER SYSTEM SET RESOURCE_LIMITTRUE SCOPEBOTH; --创建…

CUL8R的完整形式是什么?

CUL8R&#xff1a;稍后再见 (CUL8R: See You Later) CUL8R is an abbreviation of "See You Later". CUL8R是“稍后见”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media networking sites like Facebook, Yahoo M…

SuperSpider——打造功能强大的爬虫利器

SuperSpider——打造功能强大的爬虫利器 博文作者&#xff1a;加菲 发布日期&#xff1a;2013-12-11 阅读次数&#xff1a;4506 博文内容&#xff1a; 1.爬虫的介绍 图1-1 爬虫&#xff08;spider) 网络爬虫(web spider)是一个自动的通过网络抓取互联网上的网页的程序&#xf…

《MySQL——关于grant赋权以及flush privileges》

先上总结图&#xff1a; 对于赋予权限或者收回权限还是创建用户&#xff0c;都会涉及两个操作&#xff1a; 1、磁盘&#xff0c;mysql.user表&#xff0c;用户行所有表示权限的字段的值的修改 2、内存&#xff0c;acl_users找到用户对应的对象&#xff0c;将access值修改 g…

对Spring的理解

1、Spring实现了工厂模式的工厂类&#xff0c;这个类名为BeanFactory实际上是一个接口&#xff0c;在程序中通常BeanFactory的子类ApplicationContext。Spring相当于一个大的工厂类&#xff0c;在其配置文件中通过<bean>元素配置用于创建实例对象的类名和实例对象的属性。…

Java中的null是什么?

As we know null is an important concept in every language not only in Java but here we will study various factors regarding null. 我们知道null在每种语言中都是重要的概念&#xff0c;不仅在Java中&#xff0c;在这里我们还将研究有关null的各种因素。 null is a ver…

《MySQL——分区表小记》

分区表的组织形式 以年份为分割方式&#xff0c;对表进行分割&#xff1a; CREATE TABLE t (ftime datetime NOT NULL,c int(11) DEFAULT NULL,KEY (ftime) ) ENGINEInnoDB DEFAULT CHARSETlatin1 PARTITION BY RANGE (YEAR(ftime)) (PARTITION p_2017 VALUES LESS THAN (201…

实战Windows下安装boost

Boost大部分组件无需编译可直接包含头文件使用&#xff0c;但还有一些库需要编译成静态库或动态库才能使用。可使用下文将提到的bjam工具&#xff1a;bjam --show-libraries 查看必须编译才能使用的库。 编译安装环境&#xff1a;Win7&#xff0c;VS2008(msvc-9.0) 1. 下载boos…

postgresq dur_DUR的完整形式是什么?

postgresq dur杜尔(DUR)&#xff1a;您还记得吗&#xff1f; (DUR?: Do You Remember?) DUR? is an abbreviation of "Do You Remember?". DUR&#xff1f; 是“您还记得吗&#xff1f;”的缩写。 。 It is an expression, which is commonly used in messaging…

gsettings-desktop-schemas : 破坏: mutter (< 3.31.4) 但是 3.28.4-0ubuntu18.04.2 正要被安装解决方案

完整报错&#xff1a; dyydyy-Lenovo-ThinkBook-14-IIL:~$ sudo apt install build-essential 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 有一些软件包无法被安装。如果您用的是 unstable 发行版&#xff0c;这也许是 因…

程序内存检测

本文参考自&#xff1a;http://www.cnblogs.com/hebeiDGL/p/3410188.html static System.Windows.Threading.DispatcherTimer dispacherTimer;static string total "DeviceTotalMemory";static string current "ApplicationCurrentMemoryUsage";static s…

动态规划天天练1

本来很久以前就打算每天练一道动态规划题的&#xff0c;但每每由于作业太多而中断&#xff0c;现在终于停课了......废话不多说&#xff0c;第一道题就给了我迎头一棒&#xff0c;不仅想了很久&#xff0c;连题解都看了很久。。。水平相当不足啊啊&#xff0c;不多说废话&#…

AAS的完整形式是什么?

AAS&#xff1a;活着和微笑 (AAS: Alive And Smiling) AAS is an abbreviation of "Alive And Smiling". AAS是“活着和微笑”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media networking sites like Facebook, Y…