For example, ** is a pointer to a pointer. char **argv
is the same as char *argv[]
and this is the same with char argv[][]
. It's a matrix.
You can declare a matrix with 4 lines, for example, but different number of columns, like JaggedArrays.
It is represented as a matrix.
Here you have a representation in memory.