Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
struct A 
{
    private:
    int i, j, k;
    public:
    int f();
    void g();
};
int A :: f() 
{
    return i + j + k;
}
void A :: g() 
{
    i = j = k = 0;
}
class B 
{
    int i, j, k;
    public:
    int f();
    void g();
};
int B :: f() 
{
    return i + j + k; 
}
void B :: g() 
{
    i = j = k = 0;
}
int main() 
{
    A a;
    B b;
    a.f(); 
    a.g();
    b.f(); 
    b.g();
    cout << "Identical results would be produced";
}

A. 50

B. Identical results would be produced

C. Error

D. Runtime error

Answer: Option B


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it