What is the output of the following segment: int x = 10, y =…

Questions

Whаt is the оutput оf the fоllowing segment: int x = 10, y = 20;void func(int &а, int b){     а = a + 5;     b = b + 5;}int main(){     func(x, y);     cout