Write a program to partition a given string into its tokens. You can
think the input string as a sentence and the words of this sentence as tokens.
You can also assume that the number of tokens in a string will not exceed MAX
which is predefined as a constant. Words in a sentence are seperated bt the ' '
(space)character.
Hint: The input will be a character pointer and the output will be an
array of character pointers.
Example:
Input string is:
"I am a CMPE 150 student".
Output is:
I
am
a
CMPE
150
student