Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
わかりました、単純なハングマン ゲームを作成中です。dict[num]乱数である配列 num にある文字列を引き出すのに助けが必要です。その文字列を取得して使用する方法と、それを操作するためstrlen()のそのような関数が必要なだけです。
dict[num]
strlen()
今のところstrlen(dict[num])動作しませんか?
strlen(dict[num])
dict 配列の型が char の場合、長さを取得するには
strlen(dict)
そしてそうではない
そしてもし
セグメンテーションエラーが発生し、配列が文字列で満たされていることを確認しますつまり、配列内の文字列がnull文字で終わることを確認します'\0'
'\0'