I am looking to convert a simple comma separated string like this:
apples, pears, oranges,
into a C String Array(NOT A CHARCHTER ARRAY) similar to the one found here: How do I create an array of strings in C?
I know how to do this in Python and Javascript, but how would I go about creating this in C?