How rust store Strings in arrays?
As i know from c/c++ and general knowledge of data structures, arrays are structured as sequential memory blocks with constant size. So if I create an array of five i32 variables then array size bill be 5×4 bytes, But when I create array of strings how does it’s handled. Does it creates array of pointers… Read More How rust store Strings in arrays?