Standard C++ library is implemented in its own namespace “std”. Make sure to add the statement
using namespace std;
in the beginning of your program or to qualify each Standard C++ library identifier with namespace std, for example, std::cout.
Standard C++ library is implemented in its own namespace “std”. Make sure to add the statement
using namespace std;
in the beginning of your program or to qualify each Standard C++ library identifier with namespace std, for example, std::cout.
Leave a Reply