Divide one list into two. C

One way is to loop over the array and check the positions of the array for punctuation that indicates the end of a sentence and then separate the array into two there. I would suggest separating it into two using something like memcpy, it’s your choice.

Leave a Comment