Jump to

v08-l1-isLValue

Looking at the code below, what is not a lvalue ?

int function() {
    return 1; 
}
int main() {
    int num = function();
    int& ref = num;
}

???