数组必须在定义时初始化。
数组名之间不能相互赋值。
数组名可以作为地址赋给指针。
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 }
时间: 2024-10-05 05:49:57