码迷,mamicode.com
首页 > 其他好文 > 详细

怪怪的函数strtok

时间:2015-12-14 23:24:50      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:怪怪的函数strtok

//

//#include<stdio.h>//strtok函数的利用

//int main()

//{

// char p[] = "192.196.23.45";

// char *token=strtok(p, ".");

// ///*printf("%s  ",token);

// //while (token != NULL)

// //{

// // token = strtok(NULL, ".");

// // if (token!=NULL)

// // printf("%s  ", token);

// //}*/

// for (token; token != NULL; token=strtok(NULL, "."))

// {

// printf("%s  ",token);

// }

// system("pause");

// return 0;

//}

结果:

技术分享


本文出自 “anser” 博客,请务必保留此出处http://674353165.blog.51cto.com/10786549/1722980

怪怪的函数strtok

标签:怪怪的函数strtok

原文地址:http://674353165.blog.51cto.com/10786549/1722980

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!