उपरोक्त प्रतीकों का अर्थ निम्नलिखित है -
int* - Pointer to int. This one is pretty obvious. int const * - Pointer to const int. int * const - Const pointer to int int const * const - Const pointer to const int
यह भी ध्यान दें कि -
const int * And int const * are the same. const int * const And int const * const are the same.
यदि आप कभी भी ऐसे प्रतीकों को पढ़ने में भ्रम का सामना करते हैं, तो सर्पिल नियम याद रखें:चर के नाम से प्रारंभ करें और अगले सूचक या प्रकार पर दक्षिणावर्त घुमाएं। अभिव्यक्ति समाप्त होने तक दोहराएं।