S1xHcL's Blog.

C_Notes

Word count: 198Reading time: 1 min
2021/02/22 Share

常量

字面常量

1
int num = 10;

const

const常属性

1
2
int const num = 10;
const int num = 10;

#define

#define定义的标识符常量

1
2
3
4
5
6
7
8
#include<stdio.h>
#define MAX 10

int main()
{
printf("%d\n", MAX);
return 0;
}

enum

枚举关键 enum
MALE,FEMALE,SECRET为枚举常量

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<stdio.h>

enum Sex
{
MALE,
FEMALE,
SECRET
};

int main()
{
printf("%d\n", MALE);
printf("%d\n", FEMALE);
printf("%d\n", SECRET);
return 0;
}

字符串

1
2
3
4
5
6
7
8
#include<stdio.h>

int main()
{
char arr1[] = "abc";
printf("%s\n", arr1);
return 0;
}

"abc" –> ‘a’,’b’,’c’ 字符串结束标志为 \0,在计算字符串长度的时候,不算做字符串内容

循环

while

1
2
3
4
5
while(num < 200)
{
num += 1;
}
print("exit");

for语句

1
for(i=0; i+1; i<100)

do…while语句

函数

CATALOG
  1. 1. 常量
    1. 1.1. 字面常量
    2. 1.2. const
    3. 1.3. #define
    4. 1.4. enum
  2. 2. 字符串
  3. 3. 循环
    1. 3.1. while
    2. 3.2. for语句
    3. 3.3. do…while语句
  4. 4. 函数