What am missing? I only get the string message
Shouldn't I get something else too?
#include <iostream>
#include <string>
#include <array>
using namespace std;
int main (void)
{
int index = 0;
string message = "hello all!";
for (index = 0; index < message.length(); index ++)
{
cout << message[index];
}
cout << endl;
}
Now I understand what they are having us do this for thanks