很抱歉,如果我有点困惑。
我正在尝试使用从输入文件中读取的值填充结构数组。我从文件中读取值没有问题。但是当文件很小并且没有完全填充数组时,剩余的结构中有随机值,我想将这些结构完全设置为NULL。我正在尝试这样做,因为我想遍历这个填充的结构数组并打印它的值,并且我需要查看哪些数组值是合法的来自文件。
到目前为止,这是我的代码
struct function {
char name[20];
int parameterNumer;
};
int main(int argc, const char * argv[])
{
struct function functionList[10];
int i =0, j;
int portNumber;
char *configFile = argv[1];
FILE *fp;
fp = fopen(configFile, "r");
if(fp == NULL) {
perror("File not found");
exit(1);
}
fscanf(fp, "%d", &portNumber);
while(fscanf(fp, "%s %d", functionList[i].name, &functionList[i].parameterNumer) == 2) {
i++;
}
functionList[i] = NULL; //getting an error here
for(j = 0; functionList[j] != NULL; j++) { //and here
printf("%s %d", functionList[j].name, &functionList[j].parameterNumer);
}
return 0;
}