単語が辞書テキスト ファイルに存在するかどうかを確認する必要があります。strcmp を使用できると思いますが、ドキュメントからテキスト行を取得する方法が実際にはわかりません。ここに私が立ち往生している私の現在のコードがあります。
#include "includes.h"
#include <string>
#include <fstream>
using namespace std;
bool CheckWord(char* str)
{
ifstream file("dictionary.txt");
while (getline(file,s)) {
if (false /* missing code */) {
return true;
}
}
return false;
}