本文介绍了C文件操作问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 文件*计划生育= fopen()函数
FILE * FD = ????

我想用 * FD 写文件, * FP 打开之前。

我该怎么办呢?

添加一些,这个问题的关键是用另一个指针做到这一点。见,* fd是不同的指针。希望我提出这一点。


解决方案

 文件* FD = FP;

如果我理解正确的,当然。

file * fp = fopen()
file * fd = ????

I want to use *fd to write file which *fp opened before.

How can I do it?

Add some, the key of this question is use another pointer to do it. See, *fd is the different pointer. Wish i made this clear.

解决方案
file* fd = fp;           

If I understand you correctly, of course.

这篇关于C文件操作问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 18:39