What is Composition

Relation between contained and container object, If container Object is deleted, contained object will also deleted.

class A{
  int a;
};

class B{
       A  a;    //Composition
};