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])
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…