Project: Favorite Color Message

Create a program that does the following:

  • Stores the user’s name and favorite color as strings.

  • Prints: ‘‘Hey [name], your favorite color is [color]!’’

Project: Favorite Color Message

Create a program that does the following:

  • Stores the user’s name and favorite color as strings.

  • Prints: ‘‘Hey [name], your favorite color is [color]!’’

C++
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}