Multiple choice technology programming languages int p(char *a) p is a pointer to pointer to integer p is a pointer to a function that accepts an argument which is a pointer to a character and returns an integer quantity p is a function that accepts an argument which is a pointer to a character and returns an integer quantity p is a function that accepts an argument which is a pointer to a character and returns a pointer to an integer quantity Reveal answer Fill a bubble to check yourself C Correct answer Explanation The syntax int p(char *a) declares a function named p that takes a pointer to a character (char *a) as its argument and returns an integer (int). It is not a pointer declaration.