Answers for "declare namespace c++"

C++
1

what is namespace in c++

Namespaces avoids name collisions bacause of large libraray in c++.
This feature was not supported in C
Posted by: Guest on September-03-2021
0

c++ namespace

#include <iostream>
using namespace std;


int main() {
    cout<< "Hello World" ; 
}

//If you are a web developer, please give https://code.ionicbyte.com/ a try
Posted by: Guest on August-24-2021

Browse Popular Code Answers by Language