Menu
×
×
Correct!
Exercise:Insert the missing part to call
void myFunction() {
cout << "I just got executed!";
}
int main() {
myFunction();
myFunction();
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯void myFunction() { cout << "I just got executed!"; } int main() {; ; return 0; } |