C语言常用关键字详解

由ASCII标准定义的C语言关键字共32个:

数据关键字12个:char,double,float,enum,float,int,long,short,signed,struct,union,void

控制语句关键字12个:for,do,while,break,continue,if,else,goto,switch,case,default,return

存储类型关键字4个:auto,extern,regsiter,static

其他关键字4个:const,sizeof,typedef,volatile

一、数据关键字

1、 char :声明字符型变量或函数
2、short :声明短整型变量或函数
3、 int: 声明整型变量或函数
4、 long :声明长整型变量或函数
5、float:声明浮点型变量或函数
6、double :声明双精度变量或函数
7、enum :声明枚举类型

enum weekday{
   sun,mon,tue,wed,thu,fri,sat}; //枚举元素从零开始,定义为0,1,2,...。sun的值是0,sta的值是6。
 
enum weekday a,b,c;
a=(enum weekday)2; //只能把枚举值赋予枚举变量,不能把元素的数值直接赋予枚举变量。如果一定要把数值赋予枚举变量,则必须使用强制类型转换。

8、signed:声明有符号类型变量或函数
9、unsigned:声明无符号类型变量或函数
10、struct:声明结构体变量或函数

struct student
{
   
    int num;
    char name[20];
    char sex;
    float score;
}; //注意结尾的分号

11、union:声明共用体(联合)数据类型

union foo{
   
    int i;
    char c;
    double k;
}; //注意最后的分号不要忘记

12、void :声明函数无返回值或无参数,声明无类型指针(基本上就这三个作用)

void getNothingFromFunc(); //作用一: 对函数返回的限定,函数无返回值
int function(void); //作用二:对函数参数的限定,函数没有入参
 
void* memcpy(void* dest, const void* src, size_t len); //如果函数的参数可以是任意类型指针,那么应声明其参数为void *

<

你可能感兴趣的:(linux学习,C/C++,编程语言,关键字,const/static)