// PL3/cstringstream.cpp // Demonstration of the "C" syntax strings // Niels Walet, last updated 04/12/2019 #include #include int main() { const size_t no_char{100}; // Size of array char string1[no_char]; //fixed length array to store string // Or we can do it this way char *string2; string2 = new char[no_char]; // Or we can initialize our array at the same time char string3[] = "This is string3"; // fill arrays with characters by calling strcpy strcpy(string1,"This is string1"); strcpy(string2,"This is string2"); // Print out strings std::cout<