CHAPTER 03:EX 33

/*
33. Declare a pointer to a function taking an int argument
and returning a pointer to a function that takes a char
argument and returns a float.
*/

#include
< iostream >
using   namespace  std;

void  main () {
    
float  ( * ( * fp)( int ))( char );
}

你可能感兴趣的:(CHAPTER 03:EX 33)