用C读取文件并拆分字符串

时间:2013-04-11 19:41:57

标签: c arrays file split

我有一个程序在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;
}

1 个答案:

答案 0 :(得分:2)