[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

11 / 12

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

#include <iostream>
        using namespace std;
        namespace Box1
        {
            int a = 4;
        }
        namespace Box2
        {
            int a = 13;
        }

        int main ()
        {
            int a = 16;
            Box1::a;
            Box2::a;
            cout << a;
            return 0;
        }

A4

B13

C16

DCompilation Error

Answer: Option (Login/Signup)

Show Explanation

Asked In :: Societe Generale

Post Your Answer Here:     

No Discussion on this question yet!