void Example(void) { cout<<"This is an example!"<<endl;}void (*pfn) (void) = Example;
int main() {
pfn(); return 0;}