“I bought this guide a few days ago to prepare for my interview with Oracle. Many of the questions they asked me were from this guide. I found this book absolutely great!”
I think should define in this way: typedef float*(*PF)(int , float ); and use PF as pointer to function.( of one int argument, one floaat argument, returning float *) like PF a;
the pointer to function can be type defined as:
typedef float*(*pf)(int a, float b) tagPF;
I think should define in this way:
typedef float*(*PF)(int , float );
and use PF as pointer to function.( of one int argument, one floaat argument, returning float *)
like PF a;
Leave an Answer/Comment