If I have an array of char pointers and another static array of characters, how do I assign each element of the array of pointers to each element of a static array?
(Trying to break down a problem into a smaller problem.)
Thanks.
array of pointers array of char
+----+ +----+
| | ----> | |
| * | | h |
+----+ +----+
| * | | i |
| | ----> | |
+----+ +----+