I saw this code snippet
const volatile int * volatile * const X;
but I can’t understand what does the second * means.
I understand that
const volatile int * volatile const X;
means a volatile const integer pointer to a volatile const data.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A useful site for understanding non-trivial C declarations is cdecl.org.
The description for:
from cdecl is: