Exercise :: Complicated Declarations - Yes / No Questions
2. | Is the following declaration correct? |
|||
Answer: Option A Explanation: f is a function that returns a pointer to an array of pointers to functions that return a char.
|
3. | Is the following declaration correct? |
|||
Answer: Option A Explanation: ptr is a far pointer to a far pointer to a char. (or) ptr contains a far address of a far pointer to a char
|
4. | Is the following declaration correct? |
|||
Answer: Option A Explanation: f is a pointer to a function which returns nothing and receives as its parameter an integer and a pointer to a function which receives nothing and returns nothing.
|