Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int g = 100;
int main()
{
    int a;
    {
        int b;
        b = 20;
        a = 35;
        g = 65;
        cout << b << a << g;
    }
    a = 50;
    cout << a << g;
    return 0;
}

A. 2035655065

B. 2035655035

C. 2035635065

D. 2035645065

Answer: Option A


Join The Discussion

Related Questions on Variables and Data Types in C plus plus