#什么是C语言?#
c语言是一门机器语言,高级语言,面向过程的语言。
#C语言的数据类型#
- char 字符型 1byte
- short 短整型 2byte
- int 整型 4byte
- long 长整型 4/8byte
- long long 长整型 8byte
- float 浮点型 4byte
- double 双精度浮点型 8byte
#C语言程序#
#include <stdio.h> // 头文件
int main() { // 入口函数
printf("hello world\n") // 打印输出
return 0
}