請問strtok()的用法? / C++ Builder / 程式設計俱樂部
2002/8/7 上午 10:45:54 雖然有範例, 可是我還是看不懂 請指教... #include #include int main(void) { char input[16] = "abc,d"; char *p; /* strtok places a NULL terminator in front of the token, if found */ p = strtok(input, ",");...