Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Language%20in%20C%20Interview%20Questions%20and%20Answers

Question: How do I define a pointer to a function which returns a char pointer?
Answer: char * ( *p )( ) ;
or
typedef char * ( * ptrtofun )( ) ;
ptrtofun p ;
Here is a sample program which uses this definition.
main( )
{
typedef char * ( * ptrtofun ) ( ) ;
char * fun( ) ;
ptrtofun fptr ;
char *cptr ;
fptr = fun ;
cptr = (*fptr) ( ) ;
printf ( "nReturned string is "%s"", cptr ) ;
}
char * fun( )
{
static char s[ ] = "Hello!" ;
printf ( "n%s", s ) ;
return s ;
}
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook