#include #include using namespace std; void normal(); inline void faster() {cout << "faster\n";} int main() { normal(); //call line 21 faster(); //call line 7 void (*p)() = normal; //p is a pointer to a function (*p)(); //call line 21, slower than normal p(); //simpler way to write line 15 return EXIT_SUCCESS; } void normal() { cout << "normal\n"; }