I know the type which is pointer to an int[10] (ptr->int[10]) is int (*var)[10],
but how to describe those of type blow?
the type which is pointer to the const int[10] (ptr->const int[10])
the type which is const pointer to the int[10] (const ptr->int[10])
the type which is const pointer to the const int[10] (const ptr->const int[10])