What is the correct interpretation of the following declaration in C++? int…

2018

What is the correct interpretation of the following declaration in C++?
int (*FPTR)(char*)

Answer: C. FPTR is a pointer to a function, which takes character pointer as an argument and returns integer value

  1. A.

    FPTR is a pointer to character

  2. B.

    FPTR is a pointer to a function, which takes character as an argument and returns integer value

  3. C.

    FPTR is a pointer to a function, which takes character pointer as an argument and returns integer value

  4. D.

    FPTR is a function, which takes character pointer as an argument and returns integer pointer

Attempted by 298 students.

Show answer & explanation

Correct answer: C

Explore the full course: Rssb Senior Computer Instructor

Loading lesson…