二重指针
摘要:
#include void changeStr(char **str){ *str = "Hello,World!";}int main(){ char *str; str = "Hello,C"; changeStr(&str); puts(str); retu... 阅读全文
posted @ 2014-04-15 21:13 沉默的大块头 阅读(118) 评论(0) 推荐(0)
2014年4月15日 #
posted @ 2014-04-15 21:13 沉默的大块头 阅读(118) 评论(0) 推荐(0)
posted @ 2014-04-15 21:03 沉默的大块头 阅读(215) 评论(5) 推荐(1)
2013年12月22日 #
posted @ 2013-12-22 00:04 沉默的大块头 阅读(904) 评论(3) 推荐(2)