Vidyalelo
C++ Programming · Q164

Functions and Procedures in C++

Programming · C++ Programming · question 164

Q164

What will be the output of the following C++ code? #include using namespace std; namespace first int x = 5; int y = 10; namespace second double x = 3.1416; double y = 2.7183; int main () using first::x; using second::y; bool a, b; a = x > y; b = first::y < second::x; cout << a << b; return 0;

A.
11
B.
01
C.
00
D.
10
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board