If it's local to a function, it's on the stack. If it's global or static, it's in the executable's data segment (AAKA "global memory"). If it's a declaration within another class, could be anywhere depending on how the instance of the class is allocated.
Namespace does not affect anything. It's just for the compiler.
EDIT re: classes.
If an instance is declared A a;, and this declaration happens to be inside a class, like this:
class B
{
A a;
};
then the memory placement of a is determined by the way an enclosing instance of B is allocated. For example, in case of B b; the same rules apply - either stack or global memory. If it's
B *b = new B();
, however, then your A lives on the heap together with the rest of the B.