How print something in C++?
-In C language we have printf() function that are used to display string on the console.
-In C++ we have 'cout<<'
program-
#include
using namespace std;
int main()
{
//For print something C++ provide cout<<
cout<<"This is printed statement";
cout<<"This is r4r website";
}
This is printed statement
This is r4r website