返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n[]={1,3,5,7,9};
  8.     int *nPtr;
  9.     nPtr=n;
  10.     cout<<*nPtr<<endl;
  11.     nPtr=&n[2];
  12.     cout<<*nPtr<<endl;
  13.      nPtr=&n[4];
  14.     cout<<*nPtr<<endl;
  15.     system("pause");     
  16.     return 0;   
  17. }
複製代碼

TOP

返回列表