There is also a minor point of style. Some people write
char** image, wow;
Others write
char **image, wow;
They both mean the same thing but the former implies that wow is a char** when it is actually a char. When your in the depths of debugging, such declarations don't help. With the latter, it is obvious that it is a char. If you are going to use the first format, declare your variables separately
char** image;
char wow;