✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Što će biti ispisano nakon izvršenja programa:
#include<iostream>using namespace std;
int A(int x) { return 2 * x; }void B(int x, int& ry) { ry = 2 * x; }
int main() {
int a = 1, b = 2, c;
a = A(b); cout << a; B(a, b); cout << b; B(A(b), c); cout << c;
return 0;}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!