函数strtok和strchr的使用
摘要:
#include <string.h>
#include <stdio.h>
int main(void) { char input[16] = "abc,d"; char *p; p = strtok(input, ","); if (p) printf("%s\n", p); p = strtok(NULL, ","); if (p) printf("%s\n", p); return 0;
}#include<string.h>
#include< 阅读全文
posted @ 2012-06-20 23:41 java课程设计 阅读(444) 评论(0) 推荐(0) 编辑