20150712,关于C。

来源:互联网 发布:php 防止sql注入 编辑:程序博客网 时间:2024/05/17 02:44

int_least8_t是   能存储8位signed integer,但也是系统上能存储8位signed integer的最小的   数据类型   的别名。

int_fast8_t   是   能存储8位signed integer,但也是系统上能存储8位signed integer的最快的   数据类型   的别名。

stdint.h提供integers的别名,inttypes.h提供这些别名在printf()里的specifiers。

floating-point的非指数部分确定精度,也就是有效数字,指数部分确定范围。

float一般32位;double一般64位;C只保证long double有和double一样的精度。
0 0