Menu
×
×
Correct!
Exercise:Insert a new line after "Hello World", by using a special character:
int main() {
cout << "Hello World! @(2)";
cout << "I am learning C++";
return 0;
}
int main() {
cout << "Hello World! \n";
cout << "I am learning C++";
return 0;
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 58 exercises.
Are you sure you want to continue?