recategorized by
607 views
2 votes
2 votes
Declare an array of N pointers to functions returning pointers to functions returning pointers to characters?

A) (char*) (*ptr[N])( )

(B) (char*(*)) (*ptr[N])( )

(C) (char*(*)( )) (*ptr[N])( )

(D) (char*(*)( )) (*ptr[N])
recategorized by

1 Answer

2 votes
2 votes

Correct option is (C).

For more Detail solution Follow this link then only you can understand this : https://www.youtube.com/watch?v=LPABbqfElA8&list=PLsFENPUZBqipuTJXgm7xAOR0UnY_8OY07&index=31

Thank You.

Related questions