saving . . . saved using namespace std has been deleted. using namespace std has been hidden .
using namespace std
Title
Question
Mam, I am not able to understand the usage of namespace std. 

C-and-Cpp First-Cpp-Program 03-04 min 10-20 sec 09-06-20, 10:32 a.m. sahil1915065@gndec.ac.in

Answers:

Namespace provides scope to the identifiers declared inside it. They are used to organize code in to logical groups.
12-06-20, 6:56 p.m. nags


#include<iostream>                                                                                                                                            using namespace std;                                                                                                                                            int main ()                                                                                                                                                                   {                                                                                                                                                      court<<"Name:Sneha"<<endl;                                                                                                                court<<"City: Bengaluru"<<endl;                                                                                                                      return 0;                                                                                                                                                                         }                                                                                                                                                                                      OUTPUT:                                                                                                                                                     Name:Sneha                                                                                                                                                         City: Bengaluru 
22-11-25, 10:51 p.m. rtsneha2@gmail.com


Log-in to answer to this question.