C++ topics (beginning concepts)

what is cout << and cin>> in c++ language .Is it operator or a function:?
thank you

Hey Sachin, std::cout and std::cin are global objects of classes std::ostream and std::istream respectively, which they’ve overloaded operator << and >>.