1. 程式人生 > >C++數組小計

C++數組小計

system ring iostream urn c++ 錯誤 cout 相互 初始化

數組必須在定義時初始化。

數組名之間不能相互賦值。

數組名可以作為地址賦給指針。

 1 #include<iostream>
 2 #include<cstring>
 3 #include<string>
 4 using namespace std;
 5 int main()
 6 {
 7     int b[10];
 8     //b[10] = {1,2,3,4};//錯誤
 9     int c[] = {2,3,1,2};
10     int *a;
11     a = b;
12     cout << a[0] << endl;
13 //c = b;//錯誤 14 system("pause"); 15 return 0; 16 }

C++數組小計