In
#include <iostream>
using namespace std;
int main(){ cout << "Hello World";
return 0;}
What does << actually do?
It is called the insertion operator and is used to insert a formatted value on an output stream. (Check the links for more details.)