摘要: #include <string>#include <iostream>using namespace std;int main(){char str[] ="efsa efsb sefsc"; char *pch; pch = strtok (str," "); while (pch != NULL) { cout<<pch<<endl; pch = strtok (NULL, " "); } return 0;}输出:efsaefsbsefsc 阅读全文
posted @ 2013-04-06 20:47 开心成长 阅读(6623) 评论(0) 推荐(0) 编辑