1

我有一个在 C 中读取文件的程序。现在我想将字符串除以空间放入一个数组中。我该怎么做?

#include <stdio.h>
int main()
{
char line[30];
char names[100][20];
int sizes[100];
int i = 0;
FILE *fp;

fp = fopen("in.txt", "rt");

if(fp == NULL)
{
    printf("cannot open file\n");
    return 0;
}
while(fgets(line, sizeof(line), fp) != NULL)
{
     printf(line);

    i++;
}
fclose(fp);

return 0;
}
4

1 回答 1

4

看看函数strtokstrtok_r

http://www.cplusplus.com/reference/cstring/strtok/?kw=strtok

于 2013-04-11T19:44:08.403 回答