QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 651|回复: 5

这个程序那里有错呢

[复制链接]
发表于 2003-5-14 19:22:29 | 显示全部楼层 |阅读模式
#include <stdio.h>
main()
{
  FILE *fp;
  char a[10];
  char filename[] = "text";
  int i;
  for(i=1;i<11;i++)
    {
    scanf("%c",&a);
    }
  if((fp=fopen(filename,"w"))==NULL)
    {
    printf("不能打开文件!");
    exit(0);
    }
  for(i=1;i<11;i++)
    {
      fprintf(fp,"%c",&a);
    }
}
我没有我要的结果啊!!!
我想输入字符串,保存到文件中,但是文件中的不是我输入的内容啊!!!
:-(  :-(  :-(  :-(
发表于 2003-5-14 19:37:40 | 显示全部楼层
我不知道你的怎么回事,但想问个问题
if((fp=fopen(filename,"w"))==NULL这行什么意思??
数组最好从0开始..
回复

使用道具 举报

发表于 2003-5-14 20:27:45 | 显示全部楼层
fprintf(fp,"%c",&a);
這句有問題,把a前的&去掉,,至於為什麼嘛,自己想想
回复

使用道具 举报

发表于 2003-5-14 23:12:55 | 显示全部楼层
[quote:7cb408c140="suninchina"]我不知道你的怎么回事,但想问个问题
if((fp=fopen(filename,"w"))==NULL这行什么意思??
数组最好从0开始..[/quote]

fopen return NULL if open fail. then fp = null. and then compare fp == NULL.
so it means when fopen fails, execute the code in {}


btw, u array index is wrong. and u &a is wrong as cfchio said
回复

使用道具 举报

 楼主| 发表于 2003-5-15 07:35:17 | 显示全部楼层
Thank you very much!!!  :-)  
回复

使用道具 举报

发表于 2003-5-15 07:40:50 | 显示全部楼层
welcome. u had better read a c book for starter. frankly, u lack some basics.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-15 22:45 , Processed in 0.046821 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表