Computer Science, asked by sproutseasarah, 2 months ago

What does "using namespace std" mean in c++ programs

Answers

Answered by sangitasingh61051
2

Answer:

First of all, you need to know what c++ namespaces are. In programming, we cannot have variables, functions, etc with the same name. ... “using namespace std” means we use the namespace named std. “std” is an abbreviation for standard. So that means we use all the things with in “std” namespace.

Explanation:

Mark me as brainliest

Similar questions