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

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



