C练习

#include<stdio.h>
int main(){
    char buf[]=",everyone.";
    char* s;
    char* ss;

    ss = strtok(buf,",");
    printf("%s\n", ss);
    s = strtok(NULL, ".");
    //printf("%s\n", s);

}
posted @ 2025-05-08 13:37  lethe311  阅读(10)  评论(0)    收藏  举报