logo

Crowdly

Browser

Add to Chrome

Što će ispisati slijedeći program? #include<iostream> using namespace std; ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Što će ispisati slijedeći program?

#include<iostream>

using namespace std;

int main() {

  int x = 3;

  int& y = x;

  int z = 5;

  cout << x << y << z;

  y = z;

  cout << x << y << z;

  return 0;

}

0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on moodle.srce.hr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome