Where are the objects of a class created? It is definitely not on heap if the declaration is something like:

Code:
class A
{

};

int main()
{
     A a1;
}