Insert the missing part to call myFunction
two times.
void myFunction() {
cout << "I just got executed!";
}
int main() {
@(12);
@(12);
return 0;
}
void myFunction() {
cout << "I just got executed!";
}
int main() {
myFunction();
myFunction();
return 0;
}