Tag: C++
What is Namespace in C++
Consider the Following Example: Problem 1: Suppose we take two variable x but different type one is int type and another is double type in same scope. Following error comes when we run same variable name but different types. Problem with this code is each variable have unqiue entity in there scope. Problem 2: Suppose […]