运行 ❯
获取您
自己的
网站
×
更改方向
更改主题,明暗
转到 Spaces
#include <iostream> #include <cstring> using namespace std; int main() { char myStr[] = "Learn C++ at W3schools"; char * myPtr = strtok(myStr, " "); while(myPtr != NULL) { cout << myPtr << "\n"; myPtr = strtok(NULL, " "); } return 0; }
学习
C++
在
W3schools