c – 为什么写写比我讲的更多?

c – 为什么写写比我讲的更多?,第1张

概述FILE *out=fopen64("text.txt","w+");unsigned int write;char *outbuf=new char[write];//fill outbufprintf("%i\n",ftello64(out));fwrite(outbuf,sizeof(char),write,out);printf("%i\n",write);printf("%
file *out=fopen64("text.txt","w+");unsigned int write;char *outbuf=new char[write];//fill outbufprintf("%i\n",ftello64(out));fwrite(outbuf,sizeof(char),write,out);printf("%i\n",write);printf("%i\n",ftello64(out));

输出:

02575525868

到底是怎么回事?
写入设置为25755,我告诉fwrite写一个文件,这是开头,然后im在一个位置除了25755以外的许多字节?

解决方法 如果您使用的是DOSish系统(例如windows),并且文件未以二进制模式打开,则会自动转换行尾,并且每个“行”将添加一个字节.

所以,指定“wb”作为模式,而不是只是“w”,因为@caf指出.它将对Unix平台没有影响,并且会对其他人做正确的事情.

例如:

#include <stdio.h>#define LF 0x0aint main(voID) {    char x[] = { LF,LF };    file *out = fopen("test","w");    printf("%d",ftell(out));    fwrite(x,1,sizeof(x),out);    printf("%d",ftell(out));    fclose(out);    return 0;}

用VC:

C:\Temp> cl y.cMicrosoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86copyright (C) Microsoft Corporation.  All rights reserved.y.cMicrosoft (R) Incremental linker Version 9.00.21022.08copyright (C) Microsoft Corporation.  All rights reserved./out:y.exeC:\Temp> y.exe04

用Cygwin gcc:

/cygdrive/c/Temp $gcc y.c -o y.exe/cygdrive/c/Temp $./y.exe02
总结

以上是内存溢出为你收集整理的c – 为什么写写比我讲的更多?全部内容,希望文章能够帮你解决c – 为什么写写比我讲的更多?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1254870.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存