commands.txt というテキスト ファイルがあり、いくつかのコマンドの後にいくつかの引数が続きます。例:
STOP 1 2 4
START 5 2 1 8
MOVE
CUT 0 9
このテキストファイルからすべての行を読み取り、このようなものを印刷したい
STOP: 1 2 3
START: 5 2 1 8
MOVE:
CUT: 0 9
fgets を使用してすべての行を読み取り、sscanf を使用してみましたが、機能しません。
char line[100] // here I put the line
char command[20] // here I put the command
args[10] // here I put the arguments
#include<stdio.h>
int main()
{
FILE *f;
char line[100];
char command[20];
int args[10];
f=fopen("commands.txt" ,"rt");
while(!feof(f))
{
fgets(line , 40 , f);
//here i need help
}
fclose(f);
return 0;
}
手伝って頂けますか?