#include #include #include #define TRUE 0 #define FALSE -1 int main(int argc, char *argv[]){ char* str; char* tokenPtr; memcpy(str, argv[1], 16); tokenPtr = strtok(str, 0x05); while(tokenPtr != NULL){/*while*/ printf("tokenPtr = %s\n", tokenPtr); tokenPtr = strtok(NULL, 0x05); }/*while*/ }