code class="asciimath">Consider the statement: char* a, b, c[10]; Which of the following is correct? A. a and b are pointers to a char, c is a pointer to a char array B. a and b are pointers to a char, c is a pointer pointing to a pointer of a char array C. a is a pointer to a char, b is a char, c is a pointer to a char array D. None of above