I learned pointers and arrays already but I don't know what ** or && is used for and when trying to understand this line im not sure what this is.
int main() {
srand(time(NULL));
int n, m, option, row, col, flagCount = 0;
char **flags, **board;
im not sure what's being declared in the 4th row also those pointers at list I think they are are later in the program being sent to this function .
char **creatArray(int n)
what is this (**) used for in the function type?