#include <iostream>

void say_hello()
{
    std::cout<<"Hello!"<<std::endl;
}

int main()
{
   void(*f)() = &say_hello;
   f();
   return 0;
}