摘要: 字符串指针和字符串数组使用区别 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 5 int main(void) 6 { 7 char str1[]="this is str1!"; 8 puts(str1); 9 阅读全文
posted @ 2020-09-29 23:39 un-define 阅读(493) 评论(0) 推荐(0)