Advertisement
Advertisement
| 06.10.2008 at 10:56AM PDT, ID: 23473271 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: |
char str [80] = "../data/out_file";
char *result = strtok(str, "/");
while(result != NULL){
printf("[%s]\n", result);
result = strtok(NULL, "/");
}
|