String Tokenizer

why are we taking pointer variable as a string tokenizer

@garganshul151
We wish to return a location to a character array from the strtok function so using a char pointer makes the most sense. The inbuilt strtok function returns a char pointer as well.