Multiple choice technology programming languages int *p(char *a) p is a function that returns a pointer to 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 p is a function that accepts an argument which is a pointer to a character and returns an integer quantity None of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation In the declaration int *p(char *a), p is a function because of the function call parentheses (char *a). It takes a pointer to a character (char *a) as an argument and returns a pointer to an integer (int *).