Copiez et collez le code suivant dans main.c:
inclure
inclure
int main (char str [], char SPL)
{
char * p
GO
printf ("Divisé "% S " en jetons: n", Str)
GO
p = strtok (str, SPL)
GO
while (p! = NULL)
{
printf ("-% s n "-, p)
GO
p = strtok (NULL, "-, "-)
GO
}
retourner 0
GO
}