文件的访问问题
#include "stdio.h"
#include "iostream"
main()
{
FILE *fp;
int i;
char ch;
char str[100];
if((fp=fopen("input.txt","w"))==NULL)
{
printf("Can not open the file.\n");
exit(0);
}
//printf("Input a string:\n");
//gets(str);
//while(str[i]!='!')
//{
// if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
// fputc(str[i],fp);
// i++;
//}
//fclose(fp);
fp=fopen("input.txt","r");
fgets(str,strlen(str)+1,fp);
printf("%s\n",str);
fclose(fp);
}
我编译这个程序后,编译的时候没有错,但是我从文件输入的数据显示出来的时候是错误的,请各位大侠帮忙看看问题出在那儿啊 。谢谢!!