A(int a, int b) : x(a), y(b) { z = x ?

What happens when you attempt to compile and run the following code?

#include <iostream>

#include <string>

using namespace std;

class A {

protected:

int y;

public:

int x;

int z;

A() { x=2; y=2; z=3; }

A(int a, int b) : x(a), y(b) { z = x ? y;}

void Print() {

cout << z;

}

};

int main () {

A a(2,5);

a.Print();

return 0;

}
A . It prints: ?3
B . It prints: 2
C . It prints: 6
D . It prints: 5

Answer: A

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments