Hi All
I have to write a function which basically takes in a string and
returns an unknown number( at compile time) of strings
i hav the following syntax in mind
char *tokenize(char *)[]
is it ok?
if yes then how do i call the function inside a code?
Suppose it returns 3 strings then
i must hav something like
char *c[3];
c = tokenize(/*the string*/)[];
is this the correct way to declare and use function returning arrays of
string?
any suggestion will be most welcome
thanks & regards
shyam