🎴 Flashcard Mode

Java and C++ Programming Concepts

Card1 / 18
Mastered0
Review0
QuestionClick to flip

int *p(char *a)

AnswerClick to flip back
A
p is a function that accepts an argument which is a pointer to a character and returns a pointer to an integer quantity
πŸ’‘ 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 *).

Change Mode