001、输出整型数据,直接输出
[root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { printf("[%d]\n", 123); return 0; } [root@PC1 test]# gcc test.c -o kkk [root@PC1 test]# ls kkk test.c [root@PC1 test]# ./kkk [123]
。
002、指定字段宽度
[root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { printf("[%10d]\n", 123); /* 指定字段最小的宽度 */ return 0; } [root@PC1 test]# gcc test.c -o kkk [root@PC1 test]# ls kkk test.c [root@PC1 test]# ./kkk [ 123]
标签:输出,格式化,语言,PC1,123,ls,kkk,test,root From: https://www.cnblogs.com/liujiaxin2018/p/18330824