C++
Programming and Technical
Category
Flag question
Question text
What will be the output of the following program?
#include
using namespace std;
int g = 100;
int main()
{
int a;
{
int b;
b = 20;
a = 35;
g = 65;
a = 50;
cout <
Read Solution (Total 0)
C++ Other Question