bool repeat_char(char *s, int n);
//R: s is a C-string of at least n non-NUL characters and n > 0
//E: returns true if the first n characters are fully repeated throughout the string s, false
// otherwise.
ポインターによるトラバーサルを使用してこの関数を実装するのに問題があります。s から最初の n 文字を抽出し、それを s との比較に使用できると考えていましたが、どうすればそれができるかわかりません。s を一度に 1 文字ずつトラバースしている場合、s の最初の n 文字など、テキストのブロックと一致することを確認するにはどうすればよいですか?
ありがとう!