문자열 분리. strtok, strtok_s 기존에 문자열 분리에 사용되던 strtok 은 첫 인자로 대상 문자열,두 번째 인자로 분리에 기준이 되는 문자를 넣으면 되었다. 즉, #include #include int main (){ char str[] ="- This, a sample string."; char * pch; printf ("Splitting string \"%s\" into tokens:\n",str); pch = strtok (str," ,.-"); while (pch != NULL) { printf ("%s\n",pch); pch = strtok (NULL, " ,.-"); } return 0;} 이런식으로, 사용하면 되었는데... VS 2005부터 CRT라이브러리의 문자열을 다루는..