recategorized by
1,565 views
2 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])

1 Answer

2 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.

Position:
Show:

Related questions

0 0 votes
0 0 answers
499
499 views
Mrityudoot asked Feb 26, 2024
499 views
Trying out a code to get all the possible marks that can be obtained in a GATE paper.Assumptions taken : 1) All questions are MCQs (all questions have a chance of negativ...
6 6 votes
4 4 answers
2.0k
2.0k views
GO Classes asked May 2, 2022
2,024 views
What will be output printed by the following program?#include<stdio.h main() { int c=4; switch(c) { c=c-1; case 4: printf("IITB ")...
7 7 votes
2 2 answers
1.2k
1.2k views
GO Classes asked May 2, 2022
1,189 views
Trace the execution of the following if statements and select the output from this code fragmentint main() { int a = 3, b = 7 ; if ( (a + b) % 2 != 0 ) { printf("tetrahed...