Menu
×
×
Correct!
Exercise:Insert the missing part of the code below to output "Hello World!".
int main() {
cout << "Hello World!";
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯int main() {<< "Hello World!"; return 0; } |