C语言简介

来源:互联网 发布:上海博物馆淘宝 编辑:程序博客网 时间:2024/04/25 21:22

  C语言,是一种通用的、过程式的编程语言,广泛用于系统应用软件的开发。具有高效、灵活、功能丰富、表达力强和较高的可移植性等特点,在程序员中备受青睐。最近25年使用最为广泛的编程语言。C编译器普遍存在与不同操作系统中。

关键字(32个):auto,int,double,long,char,float,short,signed,unsigned,struct,                                  union,  enum,static,switch,case,default,break,register,const,volatile,                        typedef,extern,return,void,continue,do,while,if,else,for,goto,sizeof。

C99新增关键字:_Bool,_Complex,_Imaginary,inline,restrict。

C11新增关键字:_Alignas,_Alignof,_Atomic,_Generic,_Noreturn,_Static_assert,_Thread_local 。


详细内容看维基百科