标题:文件写入错误
取消只看楼主
ybyc9999
Rank: 1
等 级:新手上路
帖 子:55
专家分:0
注 册:2015-1-24
结帖率:90%
已结贴  问题点数:20 回复次数:1 
文件写入错误
#include <stdio.h>
#include <stdlib.h>
#include <iostream>

int main(void)
{
    FILE *out;
    char ch,outfile[10];
    printf("output outfile name: ");
    scanf("%s",outfile);
   
    if( (out=fopen(outfile,"w"))==NULL )
    {
        printf("cannot open the outfile.\n");
        exit(0);
    }
    while(!feof(out))
    {
         fputs("hello,world.",out);            
    }
    putchar('\n');
    fclose(out);
   
    system("pause");
    return 0;
}
大家看看代码写的有问题吗
搜索更多相关主题的帖子: include system return cannot hello 
2015-02-11 11:51
ybyc9999
Rank: 1
等 级:新手上路
帖 子:55
专家分:0
注 册:2015-1-24
得分:0 
回复 2楼 xufan
我只想输入指定的长度的,这个程序好像没法控制
2015-02-11 13:45



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




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

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