摘要: 代码: #include<stdio.h> int main(){ char * a = "qwer"; char b[] = "qwer"; printf("size of a is: %d\n",sizeof(a)); printf("size of b is: %d\n",sizeof(b)) 阅读全文
posted @ 2022-01-09 17:37 猪猪猪猪侠 阅读(148) 评论(0) 推荐(0) 编辑