Declare an array of N pointers to functions returning
pointers to functions returning pointers to characters?



Declare an array of N pointers to functions returning pointers to functions returning pointers to c..

Answer / susie

Answer :

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

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Code Interview Questions

how can i cast a char type array to an int type array

2 Answers  


how can i search an element in an array

2 Answers   CTS, Microsoft, ViPrak,


main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }

2 Answers   CSS, Wipro,


Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?

0 Answers   Honeywell,


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

3 Answers   GNITC,






void main () { int x = 10; printf ("x = %d, y = %d", x,--x++); } a. 10, 10 b. 10, 9 c. 10, 11 d. none of the above

2 Answers   HCL,


Display the time of the system and display the right time of the other country

1 Answers  


Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number

2 Answers   Ace Info,


main() { int k=1; printf("%d==1 is ""%s",k,k==1?"TRUE":"FALSE"); }

1 Answers  


write a program to count the number the same (letter/character foreg: 's') in a given sentence.

2 Answers  


how to swap 3 nos without using temporary variable

4 Answers   Satyam,


void main() { int i=5; printf("%d",i++ + ++i); }

3 Answers  


Categories