Hi everybody,
I am new in vc and I have many questions to ask before being able to finish
my first C program, thanks to your precious help.
My first problem now is to convert a string to a table of strings;
for example I have as input a string like this:
tcSTRING = "2004/01/01|2004/01/02|2004/01/03"
and I want to convert it to something like:
tcDATE[0]="2004/01/01";
tcDATE[1]="2004/01/02";
tcDATE[2]="2004/01/03";
Thanks for your help :)
(many other newbie questions are coming, so please be patient ;))