标题:vs2010中的问题??
取消只看楼主
sunlee
Rank: 2
等 级:论坛游民
帖 子:77
专家分:15
注 册:2011-10-14
结帖率:70.59%
已结贴  问题点数:13 回复次数:1 
vs2010中的问题??
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <conio.h>
int main(void)
{
   FILE *stream;
   char string[] = "This is a test";
   char msg[20];

   /* open a file for update */
  
   stream = fopen("DUMMY.FIL", "w+");//在vs2010中为什么程序运行到这里的时候,就出现了问题,说是stream为空,不是w+是可以创建一个文件吗?
        if(stream==NULL){
                perror("error");
                getch();
                exit(EXIT_FAILURE);
        }
   /* write a string into the file */
   fwrite(string, strlen(string), 1, stream);

   /* seek to the start of the file */
   fseek(stream, 0, SEEK_SET);

   /* read a string from the file */
   fgets(msg, strlen(string)+1, stream);

   /* display the string */
   printf("%s", msg);
    getch();
   fclose(stream);
   return 0;
}

搜索更多相关主题的帖子: void include stream update 
2012-05-04 01:56
sunlee
Rank: 2
等 级:论坛游民
帖 子:77
专家分:15
注 册:2011-10-14
得分:0 
不会吧,在window上用了那么长时间又怎么回事系统的问题,以前用的不是vs没有这种情况
2012-05-05 00:51



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-366906-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.384411 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved