There are two common ways for the position of the pointer sign (*) or the reference sign (&).
C-Style
ClassA *pObj;
Downside: const pointer declaration
ClassA *const pObj;
C++-Style
ClassA* pObj;
Downside: multiple pointer declaration
ClassA* pObj1, * pObj2;