摘要: 练习11-1 /* 用指针实现的字符串的改写 */ #include <stdio.h> int main(void) { char* p = "123"; printf("p = \"%s\"\n", p); p = "456"+1; /* OK! */ printf("p = \"%s\"\n" 阅读全文
posted @ 2019-11-24 13:28 nightswatch-candle 阅读(1690) 评论(0) 推荐(0)