#include #include using namespace std; //Function declaration and definition. inline void f() {cout << "f\n";} int main() { //Behaves as if we'd pasted the statement // cout << "f\n"; //right here, instead of calling the function f. //No function call or return is performed. f(); return EXIT_SUCCESS; }