[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

7 / 12

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

#include <iostream>
        using namespace std;
        namespace first
        {
            int var = 5;
        }
        namespace second
        {
            double var = 3.1416;
        }
        int main ()
        {
            int a;
            a = first::var + second::var;
            cout << a;
            return 0;
       }

A8.31416

B8

C9

DCompilation Error

Answer: Option (Login/Signup)

Show Explanation

Asked In ::

Post Your Answer Here:     

No Discussion on this question yet!