✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено в результаті виконання коду?
Введіть відповідь точно так, як її виведе програма, без додаткових пробілів.
#include <iostream>
#include <vector>
using namespace std;
class CPU{public:int cores; CPU(int c):cores(c){} }; class PC{CPU& cpu; public:PC(CPU& c):cpu(c){} int get(){return cpu.cores;} };
int main(){
CPU cpu(4); PC pc(cpu); cpu.cores=8; cout<<pc.get();
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!