摘要: int _tmain(int argc, _TCHAR* argv[]){ char* teststr = "hello"; teststr[1] = 'h'; printf("%s", teststr); return 0;} 发现teststr[1] = 'h';是不可写的,定义为char te 阅读全文
posted @ 2013-03-20 15:19 mlj318 阅读(302) 评论(0) 推荐(0)