摘要: 因此,想要查看一个数组变量的地址,代码为: int arr[10]; cout << arr << endl; //注意,arr 之前无需 & 。 查看数组中第一个元素的地址: int arr[10]; cout << &arr[0] << endl; 递归:递归的过程是压栈的过程,递归结束,会出栈 阅读全文
posted @ 2023-06-05 19:41 15375357604 阅读(3) 评论(0) 推荐(0) 编辑