Name: Anonymous 2011-05-27 0:13
#define WS " "
for (s = strtok(line,WS); s != NULL; s = strtok(NULL,WS))
what does this "s = strtok(NULL,WS)" do?
for (s = strtok(line,WS); s != NULL; s = strtok(NULL,WS))
what does this "s = strtok(NULL,WS)" do?