Computer Science, asked by chinthalaramya432, 3 months ago

ALL
class Someclass {
public:
int x;
3
4
public
Someclass(int xx) : x(xx) { }
Someclass (const Someclass& a) { x = a.x ; x++; }
void operator = (const Someclass& al) { x = al.x ; x--;}
1 :
int main()
{
Someclass a(4);
Someclass b = a;
cout << b.x << endl;
return 0;
5.
6
7
Pick ONE option
4
8​

Answers

Answered by kumarinitu08272
0

Answer:

a b c d e f g h I j k l m n o p q r s t u v w X y z

Explanation:

pick one option

Similar questions