返回列表 發帖
  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;
  7.     nptr=&n[0];
  8.     cout<<*nptr<<endl;
  9.     nptr=&n[1];
  10.     cout<<*nptr<<endl;
  11.     nptr=&n[2];
  12.     cout<<*nptr<<endl;

  13.     return 0;
  14. }
複製代碼

TOP

返回列表