✅ 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>
int main1(int argc, char** argv){
int a[] = {2,3,7,2,3};
int& c = a[1];
int& d = a[2];
c = d;
std::cout << (a[1] * a[1]);
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!