Display given message on screen - C++ Program

Q. Write a C++ program to display "Welcome to TutorialRide" on the screen.

Answer:

#include<iostream>
using namespace std;
int main()
{
         cout<<"\n Welcome to TutorialRide !!!";
         return 0;
}


Output:

print message