How would I recall, say, the fourth character and output it on the screen from this code?
#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;
}