I want to write a program that:
char * strplit(char* str1, char *str2, char * stroriginal,int
split_point)
that take stroriginal and split in the split_point element of the
string the string into two other strings,
example:
"Hello World"
i want to split this string into "Hello " "World"
thanks in advance,
andrea
char * strplit(char* str1, char *str2, char * stroriginal,int
split_point)
that take stroriginal and split in the split_point element of the
string the string into two other strings,
example:
"Hello World"
i want to split this string into "Hello " "World"
thanks in advance,
andrea
Comment