✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#define main1 main
/** Klausimas
Ką atspausdins programa? Jeigu programa nesikompiliuoja, rašykite ERROR į atsakymo langelį.
*/
#include <iostream>
class A{
public:
int a;
int b;
int c;
A(int a_ = 0 , int b_ = 4, int c_ = 8):a(b_),b(c_),c(a_){}
};
int main1(){
A a, b, c;
std::cout << a.a << b.c << c.b << std::endl;
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!