C++ Strings

characters within a string as if it’s a char array. Positions within a string str are numbered from 0 through str.length() - 1. You can read and write to characters within a string using []. example program: #include #include using namespace std; #include "console.h" int main() { string test; test = "I am Q the omnipot3nt"; ................
................