// void function example #include <iostream> using namespace std; void printmessage () { cout << "I'm a function!"; } void printmessage2 () { cout << "I'm also a function!"; } int main () { printmessage(); printmessage2(); return 0; }
<poll Which of the three methods is executed first? (2)>
</poll>