4番目の文字を思い出して、このコードから画面に出力するにはどうすればよいですか?C++の文字列から特定の文字を呼び出す方法は?
#include <iostream>
#include <string>
using namespace std;
int main() {
cout << "Enter word: ";
char random[99];
cin >> random;
\\right here is where I would like to output the fourth character of the string "random"
return 0;
}
'coutの<<ランダム[3] <<てendlを読んで考えてみましょう;' – Mysticial
は、私には、有効な質問のように思えます。ありがとう。 – Marlon
私はこれをテストしていましたが、私は4文字の文字列を使用していましたが、ゼロ値も忘れていました。 –