strncmp を使用してみましたが、抽出したい特定のバイト数を指定した場合にのみ機能します。
char line[256] = This "is" an example. //I want to extract "is"
char line[256] = This is "also" an example. // I want to extract "also"
char line[256] = This is the final "example". // I want to extract "example"
char substring[256]
"" の間のすべての要素を抽出するにはどうすればよいですか? 変数部分文字列に入れますか?