I'm studying C and I came across the code below. The printed results are always the same for all the printf calls. 
What does [x,y] mean? 
A memory address or something else?
printf("%d ", array[0,0]);
printf("%d ", array[1,0]);
printf("%d ", array[2,0]);
 
     
     
     
    