当前位置:网站首页>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
边栏推荐
猜你喜欢

22年全国程序员1月薪资出炉,才知道年薪 40 万以上的有这么多?

C3604环保黄铜带

Excel English automatic translation into Chinese tutorial

回收站的文件删了怎么恢复,回收站文件恢复的两种方法

逮到一个阿里 10 年老 测试开发,聊过之后收益良多...

ROS Experimental Notes - Install QPEP and Intel-MKL

Multilingual Translation - Multilingual Translation Software Free

浅析工业互联网

阿里P7晒出1月工资单:狠补了这个,真香...

postman+jmeter接口实例
随机推荐
HGAME 2022 Week3 writeup
李宏毅机器学习-- Backpropagation
Metasploit——客户端渗透
Multilingual Translation - Multilingual Translation Software Free
Kubernetes 计算CPU 使用率
关于弱监督学习的详细介绍——A Brief Introduction to Weakly Supervised Learning
ASIO4ALL是什么
【C语言篇】表达式求值(隐式类型转换,算术转换)
C3604环保黄铜带
22年全国程序员1月薪资出炉,才知道年薪 40 万以上的有这么多?
Which translation software is more accurate [Free]
Microsoft: Into Focus with Scott Guthrie Scott Hanselman Rajesh Jha and Kevin Scott | KEY11
一文带你了解 ViewModel 的使用及源码解析
Mathematical modeling preparation knowledge
CSDN21天学习挑战赛之折半插入排序
CSAPP lab
HGAME 2022 复盘 writeup
2.0966 铝青铜板CuAl10Ni5Fe4铜棒
Flink(Pometheus监控)
数组 冒泡排序