Project: Print More Greetings

Try this

Change the existing message (Hello, world!) to:

cout << "I'm learning C++!" << endl;

 Anything in quotes gets printed.

Mini project

Add two more lines:

cout << "Welcome to the machine." << end
cout << "Let's write some code!" << endl;

Project: Print More Greetings

Try this

Change the existing message (Hello, world!) to:

cout << "I'm learning C++!" << endl;

 Anything in quotes gets printed.

Mini project

Add two more lines:

cout << "Welcome to the machine." << end
cout << "Let's write some code!" << endl;

C++
#include <iostream>
using namespace std;
int main() {
// Make changes in the code below
cout << "Hello, world!" << endl;
return 0;
}