Dear all,
I have build a function to tokenize a sentence and to return the words in my main function. It seems ok, but it's not working the way I intend.
The code is:
main()
{
char str[50];
char *array[50];
printf("Token 0.1\nDeveloped by Alexsandro Meireles\nType");
printf(" the sentence: ");
gets(str);
tokenizar(str);
printf("\n");.
2009-03-05 11:28:43 UTC in Dev-C++