Quote Originally Posted by anoop4real View Post
Is this a correct statement ?
int & rnum = 12;
Is there any way to make this statement correct?
In C/C++ this is not a valid statement.
To make it a valid C++ statement add "const" in the statement like this.
const & rnum = 12;