Question

    What this code line say? int (*p )(char

    *a)         
    A p is a pointer to the function having argument of pointer of character and returning integer. Correct Answer Incorrect Answer
    B p is a pointer to the variable having pointer of character and returning integer. Correct Answer Incorrect Answer
    C p is a pointer to the array having argument of pointer of character and returning integer. Correct Answer Incorrect Answer
    D p is a pointer to the function having argument of pointer of pointer of character and returning integer. Correct Answer Incorrect Answer
    E None Correct Answer Incorrect Answer

    Solution

    The correct answer is A

    Practice Next