当前位置:网站首页>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
边栏推荐
猜你喜欢
随机推荐
推进牛仔服装的高质量发展
iNFTnews | Web3时代,用户将拥有数据自主权
3d虚拟现实数字化展厅给予参观者充分的交互性和空间感
【C语言】猜数字游戏的实现
点云中的一些名词解释
App的回归测试,有什么高效的测试方法?
iNFTnews | In the Web3 era, users will have data autonomy
CSDN21天学习挑战赛之折半插入排序
2.0966 铝青铜板CuAl10Ni5Fe4铜棒
15. 拦截器-HandlerInterceptor
缓存知识总结
jsp中使用JDBC连接mysql的方法与实例
十年架构五年生活-08 第一次背锅
sqlmap结合dnslog快速注入
6.0深入理解MySQL事务隔离级别与锁机制
CSDN21天学习挑战赛之折半查找
HGAME 2022 Week4 writeup
小程序制作开发应遵循哪些原则?
进程和线程
Tencent Cloud Lightweight Application Server Configuration and Website Building Tutorial