Welcome to the forum
The [10[10] tells the compiler that the variable a is an array with 2 dimensions. 10 rows and 10 columns
You would address the data held in the third column of the eighth row as a[7][2]
Note that the row and column numbers start at 0 and not 1
You need to read up on arrays in C