Loading

摘要: #include <iostream> #include <windows.h> using namespace std; int main() { int a[]={1,3}; int *p=&a[0]; cout<<"*p++="<<*p++<<endl; p=&a[0]; cout<<"*++ 阅读全文
posted @ 2021-08-24 14:25 记录学习的Lyx 阅读(3820) 评论(0) 推荐(0) 编辑