[Solved] C++ Array out of strings
[ad_1] Since the length of the array is not known at compile time, you can not use an automatic array. The array has to be allocated dynamically. The simplest solution to copy a string into an array would be to use std::vector. However, I suspect that your desire to create an array from a string … Read more