当前位置:网站首页>C language% (%d,%c...)
C language% (%d,%c...)
2022-08-10 23:41:00 【There are gods in the mountains】
In addition to the remainder, the symbol % has another meaning as a leading character; such as %d,%c...
Here are some (not in-depth):
1. %d integer output, usually used to output int type
(A number can be inserted between "%" and the letter to indicate the field width. For example, %2d means outputting a 2-bit integer number, which is not enough for 2-bit right-alignment; %-2d means left-alignment)
2. %ld long integer output, usually used to output long type
3. %s is used to output strings, usually used to output char type
4. %c is used to output characters, char type
5. %p pointer value (print pointer address)
6. %f is used to output decimals. By default, 6 decimal places are reserved, such as 1.000000; usually used to output float type
%.2f is used to output decimals, with two decimal places, such as 1.00
7. %ld is a double-precision floating-point type, which retains 6 decimal places by default, which is usually used to output double type
8. %e outputs real numbers in exponential form,
9. %g automatically selects f format or e format according to the size, and does not output meaningless zeros.
10. %o output integer as octal number
11. %x prints an integer as a hexadecimal number, or the address of a string
12. %u outputs unsigned data (unsigned number) in decimal.
Note: %d and %u have an unsigned value range, that is, the limit value, otherwise the value will be printed incorrectly
边栏推荐
猜你喜欢
随机推荐
开启新征程——枫叶先生第一篇博客
高校就业管理系统设计与实现
sqlmap结合dnslog快速注入
Anroid 组件化构架设计:细说为何需要使用组件化提高工程编译速度
细谈APP开发焦点问题:AMS 系统时间调节原理
Geogebra 教程之 02 Geogebra初学者的 8 个基本要素
6.0深入理解MySQL事务隔离级别与锁机制
HGAME 2022 Week4 writeup
ROS实验笔记之——UZH-FPV数据集的验证
Talking about cors
Flink(Pometheus监控)
GoldenGate中使用 exp/imp 进行初始化
HGAME 2022 Week3 writeup
一条SQL查询语句是如何执行的?
十年架构五年生活-08 第一次背锅
ROS Experiment Notes - Validation of UZH-FPV Dataset
[C language] Detailed explanation of data storage
定时器,同步API和异步API,文件系统模块,文件流
服务器小常识
怼不过产品经理?因为你不懂DDD领域建模与架构设计









