If a variable is declared as:
char ** argv;
And a function's definition is something like:
extern int my_system(const char *argv[]);
Now if we are passing the argument in the function as:
(my_system(argv))
then it throws the warning passing argument 1 of 'my_system' from incompatible pointer type.
What can be the possible solution to this?