You see, I'm using Borland C ++ ver 5.02 (I know it's an old compiler but I'd still like to know if there's a way to end my delirium) I need my program to read the char characters and separate them into different variables afterwards of a comma, but for the moment I just need to separate the char into other variables, this is what I carry.
main()
{
char *txt[100];
cout<<"Ingresa texto: "
gets(*txt);
printf("%.*s", 4, txt + 10);
getch();
}
Any ideas or suggestions? As far as I know Borland does not stop using strings.