Looking at the code below, what is not a lvalue ?
int function() { return 1; } int main() { int num = function(); int& ref = num; }
num
function()
function
ref