00:01
So here is the code that you have.
00:02
So as for the initialization, int s4 2 is a 2d array with 4 rows and 2 columns, and the array is initialized with pairs of numbers.
00:13
And the initializer is here.
00:18
And this might cause some confusion due to leading zeros in numbers like 0000, 100, etc.
00:27
And in c, a number starting with 0 is considered octal.
00:33
But in this case, the values are interpreted simply as integers, since they are within the decimal range.
00:43
So now we can talk about the pointers.
00:50
So int, so this line, declares p as a pointer to an array of two integers.
00:57
Integers.
00:58
And int star q declares q as a pointer to an integer...