In: Computer Science
What does std:: mean?
std is a namespace. It means actually a standard.
The "::" operator is the scope operator. This operator tells us which namespace or class it has to use to look in for the identifier.
we will use using namespace std
This means we will look it in global scope.