// the void function void function() { cout << "Hello World!"; } // the main function int main() { function(); return 0; }