摘要: 1、数组 3、指针 int main(){ char arrgs[]="Hello"; printf("%s\n",arrgs);//Hello printf("%c\n",*arrgs);//H char* p=arrgs; printf("%s\n",p);//Hello printf("%c\ 阅读全文
posted @ 2021-06-22 10:44 cgl_dong 阅读(110) 评论(0) 推荐(0) 编辑