I have a class respectively a struct with a member variable of type std::array<char, 100> called charArray. I want to initialize this array sensibly. Which values are sensible to init the array with and what is the best way to do this?
I think I could use std::fill() in constructor but is this the way I should really do it? I mean because of initialization vs. assignment?
Thanks.