language: C++ 4.7.2 (gcc-4.7.2)
date: 406 days 7 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
    #include <cstdio>
 
    typedef void (*FuncType)();
 
    static void Print() { std::printf("%s", "Hello, World!\n"); }
 
    int main() {
      FuncType const ft = &Print;
      ft();
      (*ft)();
      (**ft)();
      /* ... */
    }