i have an array like this:
char a[3][4]
i want to declare a pointer to this array
in a way that every time i increase the pointer , the pointer will increase by 4 (in this case)
something like with function argument:
int myfunc(char a[][4])
every time i increase a, it will increase by 4
the same thing i want to do with var declaration (not argument declaration)
is it possible ?
thanks in advanced