Dynamic memory inside a struct
- by Maximilien
Hello,
I'm editing a piece of code, that is part of a big project, that uses "const's" to initialize a bunch of arrays.
Because I want to parametrize these const's I have to adapt the code to use "malloc" in order to allocate the memory.
Unfortunately there is a problem with structs: I'm not able to allocate dynamic memory in the struct itself.…