摘要: #include using namespace std; int main(){ char a[3]={'a','b','c'}; printf("%c\n",a); //随机 printf("%c\n",*a); //a[0] cout<<&a<<endl; cout<<(&a)+1<<endl; //c之后的那个地址 char *p = ... 阅读全文
posted @ 2019-04-23 19:43 whalelife 阅读(182) 评论(0) 推荐(0) 编辑