Given the following function definition:
int func() {return 6;}
The following compile:
func();
(&func)();
(*(&func))();
(&(*(&func)))();
The following do not compile:
&func();
(&(&func)())();
*(&(&func))();
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment