gpt4 book ai didi

在 C 中创建数组并将指向所述数组的指针传递给函数

转载 作者:太空狗 更新时间:2023-10-29 15:27:09 25 4
gpt4 key购买 nike

<分区>

我已经阅读了几篇与我关于 C 的问题相关的帖子。这确实帮助我减少了错误。但是,我仍然遇到其他帖子无法为我解决的问题。基本上,这就是我想要做的。

在main中定义一个数组。我将指向此数组的指针传递给函数。该函数将打开一个文件,解析该文件,并将该文件中的信息放入我传入其指针的数组中。好吧,它失败了。

我得到的错误是:

work.c:12: error: array type has incomplete element type
work.c: In function ‘main’:
work.c:20: error: type of formal parameter 1 is incomplete
work.c: At top level:
work.c:25: error: array type has incomplete element type

完整代码如下。但我认为你只需要关注我如何定义我的数组、指针等等。

#include <stdio.h>
#include <stdlib.h>

//Defining Preprocessed Functions
char readFile(char array[][], int, int);
//void displayStudentInfo(int*);

//Implements Step 1 and 2 of Student Instuctions
int main(int argc, char* argv[])
{
int x = 256;
int y = 256;
char arrays[x][y];
readFile(&arrays,x,y);
//displayStudentInfo(&array);
return 0;
}

char readFile(char array[][], int x, int y)
{
char line[256]; //Three columns 0, 1, 2 corresponds to firstname, lastname, score.
char* string;
int columns = 3;

x = 0;
//int y; //Defines rows and columns of 2D array to store data
//char array[x][y]; //Defines the array which stores firstname, lastname, and score



FILE *file;
file = fopen("input.txt", "r");

//Test to make sure file can open

if(file == NULL)
{
printf("Error: Cannot open file.\n");
exit(1);
}
else
{
while(!feof(file))
{
/*
if(fgets(line, 256, file))//fgets read up to num-1 characters from stream and stores them in line
{
printf("%s", line);
}
*/
if(fgets(line,256,file)!=NULL)
{
for(y = 0; y < columns; y++)
{
array[x][y]=strtok(fgets(line,256,file), " ");
}
x++;
}
}
}
fclose(file);
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com