[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

C++ Programming :: Namespaces - Discussion

Home > C++ Programming > Namespaces > MCQs Questions Discussion

9 / 12

What is the output of the below C++ program?

#include <iostream>
        using namespace std
        namespace space
        {
            int x = 10;
        }
        namespace space
        {
            int y = 15;
        }
        int main(int argc, char * argv[])
        {
            space::x = space::y =5;
            cout << space::x << space::y;
        }

A1015

B1510

C55

DCompilation Error

Answer: Option (Login/Signup)

Show Explanation

Asked In ::

Post Your Answer Here:     

No Discussion on this question yet!