我正在尝试在C中创建一个读取第一行表单文件并将每个单词存储到字符串数组中的函数,而不是返回数组或打印它(我使用了strtok())。我编写了我的代码,但是当我测试它时,我得到一个错误:“分段错误”,我不知道这意味着什么。 任何帮助???我看到了这个问题Segmentation fault with array of strings C 我觉得它很相似,但我仍然不明白。 这是我的代码:
从文件读取数据并将其存储到数组中的函数 函数在文件中:methodes.c
void lireFichier (char *file)
{
int i = 0;
int nbElement = 4;
char ** tab;
char line [1000];
char *str[1000];
const char s[2] = " ";
char *token;
FILE *myFile;
myFile = fopen(file, "r");
if(!myFile)
{
printf("could not open file");
} else
{
printf("file opened\n");
//while(fgets(line,sizeof line,myFile)!= NULL)
//get the fisrt line
fgets(line,sizeof line,myFile);
//fprintf(stdout,"%s",line);
//get the fisrt word
token = strtok(line, s);
for(i =0; (i< nbElement) && (token != NULL); i++)
{
int len = strlen(token);
tab[i] = malloc(len);
strncpy(tab[i], token, len-1);
token = strtok(NULL, s);
//printf( "%s\n", tab[i]);
}
}
fclose(myFile);
}
,这是main.c //我将文件作为参数传递(在argv中)
#include <stdio.h>
#include <stdlib.h>
#include "methodes.h"
int main(int argc, char *argv[])
{
int result = 1;
if(argc < 2)
{
printf("Erreur dans les arguments\n");
} else
{
int idx;
for (idx = 0; idx < argc; idx++)
{
printf("parameter %d value is %s\n", idx, argv[idx]);
}
lireFichier(argv[1]);
}
return 0;
}
以下是该文件的示例:methodes.txt
afficher tableau
partager elements roles
nommer type profession
fin
这是我的输出:
file opened
Erreur de segmentation
注意:输出为法语,因此该消息表示分段错误 谢谢你,对所有的细节感到抱歉,我只想确保人们理解我的意思。
答案 0 :(得分:0)
char ** tab;
是指向指针的未初始化指针。你需要的是一系列指针。
char *tab[10];
而不是10,使用您认为合适的大小并调整代码以包含边界检查。
答案 1 :(得分:0)