#include void one() // Write numbers to show the { // statement execution order cout << "In one: " << endl; // ________________ } void two() { cout << "In two: " << endl; // ________________ } int main() { // TIP: Don't forget the() in calls to void functions // They are necessary even though there are no arguments one(); // ________________ cout << "In main: " << endl; // ________________ two(); // ________________ one(); // ________________ two(); // ________________ return 0; // Terminate main // ________________ one(); // ________________ }