[ create a new paste ] login | about

Link: http://codepad.org/nqkYdhJj    [ raw code | output | fork ]

C, pasted on Feb 11:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void main()
{
char string[]=  "Write_A25_3_5_HZ";
char *array[10];
int i=0;

array[i] = strtok(string,"_");

while(array[i]!='\0')
{
   array[++i] = strtok('\0',"_");
}
 for (i = 0; i < 5; ++i) 
        printf("%s\n", array[i]);
}


Output:
1
2
3
4
5
Write
A25
3
5
HZ


Create a new paste based on this one


Comments: