由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] Why it only write the file once?
相关主题
fprintf in C\C++c的问题
大家帮我看看C文件输入函数fprintf的问题关于fscanf格式化读取的问题.
请教一个用matlab tcpip函数的问题One network C question
C语言程序静态库和动态库的创建及其应用又一个GDB的问题:关于显示数据
New C++ programmer, need to ask a I/O file read questionc的文件写入问题
c++产生随机数c++ template中如何判断类型
FILE*的问题请教用Mathematica输出mesh数据 (转载)
帮忙看看这几段程序有问题吗?MPI I/O 问题
相关话题的讨论汇总
话题: fptest话题: why话题: file话题: once话题: only
进入Programming版参与讨论
1 (共1页)
b***y
发帖数: 2799
1
☆─────────────────────────────────────☆
baodong (馋懒大魔包) 于 (Fri Sep 23 13:28:48 2005) 提到:
Hello, I do not understand why the following code only wrote the test.txt once
. If I comment out "if (!fpTest)", it works. Why is it different with "if (!
fpTest)"???
#include
int main(void)
{
FILE* fpTest = NULL;
for (int i=0; i<5; i++)
{
if (!fpTest)
fpTest =fopen("test.txt", "w");
fprintf(fpTest, "%d\n", i);
fflush(fpTest);
fclose(fpT
1 (共1页)
进入Programming版参与讨论
相关主题
MPI I/O 问题New C++ programmer, need to ask a I/O file read question
搜狐一题,寻解法c++产生随机数
using gnuplot in c++ questionFILE*的问题
求推荐openmp的debugger帮忙看看这几段程序有问题吗?
fprintf in C\C++c的问题
大家帮我看看C文件输入函数fprintf的问题关于fscanf格式化读取的问题.
请教一个用matlab tcpip函数的问题One network C question
C语言程序静态库和动态库的创建及其应用又一个GDB的问题:关于显示数据
相关话题的讨论汇总
话题: fptest话题: why话题: file话题: once话题: only