#include<iostream>
using namespace std;
using Love = int[4];
int arr[3][4]{ 1,2,3,4,2,2,3,4,3,2,3,4 };
int main()
{
for (Love* p = arr; p != arr + 3; p++)
{
for (int* q = *p; q != *p + 4; q++)
{
cout << *q << " ";
}
cout << endl;
}
system("pause");
}
自复习用
int i = 0;
cout << i << ' ' << ++i << endl;
操作顺序!=结合顺序.
&& || ?: , 这4个有明确顺序
自复习用