摘要: dd if=/dev/zero of=test bs=1M count=1024 在当前目录下会生成一个1G的test文件 dd if=/dev/zero of=test bs=1M count=1024 & 在执行的语句后加&可以让执行操作在后台进行; 阅读全文
posted @ 2020-04-25 16:09 MoKin_Li 阅读(778) 评论(0) 推荐(0)
摘要: 1、格式串、普通字符、转换说明; 2、%m.pX 最小字符宽度、精度、转换说明符; 3、转义序列; 阅读全文
posted @ 2020-04-25 15:58 MoKin_Li 阅读(141) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> int main(void) { int N; scanf_s("%i",&N); printf("%d\n",N); system("pause"); return 0; } 相同点: 在printf格式串中使用时,%d和% 阅读全文
posted @ 2020-04-25 15:55 MoKin_Li 阅读(1417) 评论(0) 推荐(0)