As I started learning basic C++, I\'ve always used the headings
#include using namespace std;
I want to question what is the
That is a C++ standard library header file for input output streams. It includes functionality to read and write from streams. You only need to include it if you wish to use streams.