0
What i put in the space... _____ namespace std;
c++
5 Respostas
+ 6
When you use this, we are instructing C++ compiler to use the standard c++ library. If you don't give this instruction, then you will have to use std::, each time you use a standard C++ function/entity.
+ 3
using
+ 2
using
+ 1
using namespace std;
+ 1
but what it does exactly?