标识符未被定义(第一课时作业)
本帖最后由 awallfacer 于 2021-7-2 10:03 编辑#include<io.h>
#include<direct.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAX 256
long total;
int countLines(const char*filename);
void findAllCodes(const char*path);
void findALLFiles(const char*path);
int countLines(const char*filename)
{
FILE*fp;
int count = 0;
int temp;
if((fp=fopen(filename,"r"))==NULL)
{
fprintf(stderr,"Can not open the file:%s\n",filename);
return 0;
}
while((temp=fgetc(fp))!=EOF)
{
if(temp=='\n')
{
count++;
}
}
fclose(fp);
return count;
}
void findAllCodes(const char*path)
{
struct_finddata_t fa;
最后一行的“struct_finddata_t fa;”显示未被定义 我来看看 超级玛尼哄 发表于 2021-7-2 12:02
我来看看
不太会~告辞 最好把你的代码全贴上来 请发完整代码,不然不知道错误原因
但我猜是因为
struct_finddata_t fa
struct 是一个关键字,你以后会学到
试试改成这样:
struct finddata_t fa
页:
[1]