私はファイルに取り組んでいます。各行を取り、スペースの後に分割したいと思います。たとえば、line1 が次の場合: 今日は月曜日です。
これまでの私のコードは次のとおりです。
FILE *file = fopen ( "file1", "r" );
if ((file != NULL ))
{
char line [ 128 ];
while( ( fgets ( line, sizeof line, file ) != NULL ))
{
//tokenize the line based on space
??
}
how to add text at the end of the line? i mean i have **today is monday** and i want to add for example **Yupppy** at the end of today is monday line.
fclose ( file );
}