#include<stdio.h>
#include<string.h>
int main(){
    char string[] = "abc de,fghi\tjklmn\nopqrstuv";
    char *token;
    /* 공백,콤마,탭,개행 이 있으면 단어구분 */
    char delimit[] = " ,\t\n";
    token = strtok(string, delimit);
    while(token!=NULL){
        /* 출력 */
        printf("%s\n", token);
        /* 다음단어 */
        token = strtok(NULL, delimit);
    }
}