skip to main
|
skip to sidebar
reversed("andelf")== "fledna"
andelf fledna Feather
2008年10月18日星期六
string.h 中 strtok 提示段位错误
strtok 函数 char *p = "asdf asdf asdfasd asdf"; char *sp = " "; char *t; t = strtok(p, sp); 提示段位错误 原因很简单, strtok 会修改它第一个参数所指向内存的内容. 所以正确的方法是: char buf[] = "asdf asfd asdf"; char *p = buf; 再调用. 具体点, 是因为数组初始化和指针初始化两种处理字符串方法的微小不同引起的.
没有评论:
发表评论
较新的博文
较早的博文
主页
订阅:
博文评论 (Atom)
标签
python
(15)
code
(9)
tip
(9)
web
(4)
c
(2)
fp
(2)
haskell
(2)
math
(2)
win32
(2)
cherrypy
(1)
data_structure
(1)
emacs
(1)
git
(1)
inet6
(1)
ipv6
(1)
ironpython
(1)
neu
(1)
plone
(1)
puzzle
(1)
resource
(1)
translate
(1)
wget
(1)
zope
(1)
订阅
博文
Atom
博文
评论
Atom
评论
搜索此博客
博客归档
►
2011
(10)
►
六月
(5)
►
五月
(2)
►
四月
(1)
►
三月
(2)
►
2010
(15)
►
十二月
(1)
►
十月
(3)
►
五月
(5)
►
四月
(6)
►
2009
(14)
►
七月
(4)
►
六月
(1)
►
四月
(6)
►
二月
(3)
▼
2008
(14)
▼
十月
(4)
string.h 中 strtok 提示段位错误
compile wget 1.11.4 using mingw32/dev-cpp with ine...
Pyton 字符串方法详解
强悍的类定义
►
九月
(4)
►
八月
(5)
►
五月
(1)
关注者
我的简介
Feather.et.ELF
查看我的完整个人资料
没有评论:
发表评论