摘要: 文件打开类型: 文件打开输出就用: 1 #include <stdio.h> 2 3 int main() 4 { 5 FILE *fp = NULL; 6 7 fp = fopen("/tmp/test.txt", "w+"); //第一个逗号前是文件位置。逗号之后是打开文件方式 8 fprint 阅读全文
posted @ 2019-10-23 09:53 kongbursi 阅读(54676) 评论(0) 推荐(1)