RValues are things which are not maniputable regions of memory
rvalues are expressions, not "things".
rvalues can refer to objects ("maniputable regions of memory").
so literals like integers are considered RValues.
Literals are rvalue (not "considered" rvalues) because C++ is defined that way.
Do constants constitute RValues?
const int x = 0;
Actually, x is a variable of type const int.
Given the above definition of x, the expression x is a lvalue.
Now, the temporary objects created by the compiler are also RValues
No, rvalues are expressions, not objects.
even when they have maniputable memory regions. Why is that so?
It isn't so.
Because they cannot be modified by "users"? Is this the reason?
rvalues are rvalues because the language is defined this way.
So, a memory region which is NOT maniputable by the "users" is called RValue?
No, rvalue only designate expressions, not things that exist at runtime like memory.
A rvalue can sometimes refer to an object, which is a "memory region" that the user can manipulate.
memory region which is NOT maniputable by the "users"
It isn't clear what you mean here; do you mean read-only memory, or something else?