Assume all the relevant header files are included.
In the following code, which function will be called? void print(int) {} void print(int&) {} int iobj; int &ri = iobj;
int main() {
print(iobj);
}
Reveal answer
Fill a bubble to check yourself