Just a small thing encase anyone else finds this interesting as such.. but you cannot add a set of ” ” strings together in c++ without declaring one being a string.. for example
cout << "hi" + "bye" << endl;
the error would be
error: invalid operands of types ‘const char [3]’ and ‘const char [4]’ to binary ‘operator+’
because c++ treats them both as char[] variables and not as a string, so you need to wrap one up into a string for it to work
cout << string("hi") + "bye" << endl;