this is no SMS please use descriptive english language. take a string with "1, 0000413, 185019" and use strtok() of string.h. Read MSDN for the same they have a very simple example.
suchat_cs2007 wrote: > help me please, i have to cut string. > Ex1: 1,000413,185019 -> > x[0]=1 > x[1]=000413 > x[2]=185019 > > Ex2. 1,00004123,4123421,73948473,3243847 -> > x[0]=1 > x[1]=00004123 > x[2]=4123421 > x[3]=73948473 > x[4]=3243847 > > but i have create fn. for support many string pass this fn. > > > Thank you so much. > > >
