返回列表 發帖
  1. #include <bits/stdc++.h>

  2. using namespace std;

  3. int main()
  4. {
  5.     int n[5]={1,3,5,7,9};
  6.     int *nptr=n;

  7.     cout<<*nptr<<endl;
  8.     cout<<*(nptr+=3)<<endl;
  9.     cout<<*(nptr-=2)<<endl;
  10.     cout<<*(++nptr)<<endl;
  11.     cout<<*(--nptr)<<endl;
  12.     return 0;
  13. }
複製代碼

TOP

返回列表