问题描述
大家好,
你能帮我解决一下如何在C ++中使用fwrite()
Hi all,
Could you help me how to use the fwrite( ) in C ++
推荐答案
这与C完全相同。
-
__Pascal Bourguignon __
It''s exactly the same as in C.
--
__Pascal Bourguignon__
要么更具体,要么谷歌搜索它。我在搜索结果的第一页上找到了这段代码
样本:
干杯! --M
Either be more specific or try Googling for it. I found this code
sample on the first page of search results:
http://msdn.microsoft.com/en-us/libr...cs(VS.71).aspx
Cheers! --M
它与C中的完全相同。
It''s exactly the same as in C.
不*精确*,至少不是如果您的编译器严格遵守
C ++标准:您需要使用std :: fwrite(),或者使用using std :: fwrite;将其从命名空间中拉出来。
。 br />
但是否则,它的作用就像在C.
Not *exactly*, at least not if your compiler strictly adheres to the
C++ standard: You need to either use std::fwrite(), or pull it out of
the namespace with a "using std::fwrite;".
But otherwise yes, it works like in C.
这篇关于如何在C ++中使用fwrite()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!