30 likes | 178 Views
Quiz 10. CS 2420. Select the invalid function pointer statement. int (* fPtr )( int ); void Func ( int (*)( int )); int (Data::* fPtr )( int ); All of the above. None of the above. X. 0. Using a function pointer to call. global function. instance function. static global function.
E N D
Quiz 10 CS 2420
Select the invalid function pointer statement. • int (*fPtr)(int); • void Func(int (*)(int)); • int (Data::*fPtr)(int); • All of the above. • None of the above. X 0
Using a function pointer to call • global function. • instance function. • static global function. • class level function. • All of the above. X 0