c语言中怎样把文本文件中的一列数导入到程序中?

2024-12-03 11:15:57
推荐回答(1个)
回答1:

char* add(char *s)
{
int i=0;
char str[10];
FILE *fp;
printf("input file name:\n");
scanf("%s",str);
fp=fopen(str,"r"); //打开文件夹
if(fp==NULL) //检查是否正常打开
{
printf("can't open the file");
exit(0);
}//读取字符
while(!feof(fp))
{
s[i]=fgetc(fp);
i++;
}
s[i]='\0';
fclose(fp);
return s;
}