C/C++使用记录

2023-12-21 06:32:58

1.使用指定宽度的整数类型

1.1 ISO C99在标准在文件stdint.h中引入了整数类型,格式如下:

intN_t //有符号整数
unitN_t //无符号整数

注:
N为指定宽度,例如 64位无符号整型:uint64_t

1.2 格式化输入/输出中,格式控制符 使用什么符号

在inttypes.h中定义了 intN_t/uintN_t 对应的格式控制符 PRIdN/PRIuN.
示例代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
 
int main()
{
    int32_t x = -9;
    uint64_t y = 990;
    printf("x = %" PRId32 ",y = %" PRIu64 "\n", x, y);
    return 0;
}

输出结果

x = -9,y = 990

2.未完待续

文章来源:https://blog.csdn.net/fword/article/details/135085342
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。