标签:str printf 参数 void ret class ring pre 二次
#include <stdio.h> #include <string.h> /* 分割字符串 */ int main(void){ char s[100] = "123-456-789-abc-edf"; //strtok第一次调用的时候,第一个参数是字符串, //但第二次调用的时候,第一个参数是NULL const char *buf =strtok(s,"-"); while(buf){ printf("%s\n",buf); buf = strtok(NULL,"-");//如果strtok没有找到指定的分割符,那么返回NULL; } return 0; }
标签:str printf 参数 void ret class ring pre 二次
原文地址:http://www.cnblogs.com/dafume/p/6426253.html