C++程序  |  4行  |  104 B

extern int library_func2 (void);
int (*fn) (void) = library_func2;
int main (void) { fn (); return 0; }