2020年11月10日

摘要: 文件操作下 各种printf对比记忆 printf--sprintf--fprintf 都是变参函数:参数形参中有"...",最后一个固参通常是格式描述串(包含格式匹配符),函数的参数个数、类型、顺序都由固参来决定。 printf对应的是屏幕输出 printf("hello"); printf("% 阅读全文
posted @ 2020-11-10 02:00 Sna1lGo 阅读(188) 评论(0) 推荐(0) 编辑
 
摘要: 复制文件 1 //任意文件复制demo 2 3 #define _CRT_SECURE_NO_WARNINGS 4 #include<stdio.h> 5 #include<stdlib.h> 6 #include<string.h> 7 #include<time.h> 8 9 void inpu 阅读全文
posted @ 2020-11-10 01:27 Sna1lGo 阅读(152) 评论(0) 推荐(0) 编辑