We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
Please can any one tell what is the differnce between "volatile const" and "const"
for ex:
const int x;
volatile const int x;
what does differnce makes?
You use a search engine and find LOTS of answers.
Here's one:
publications.gbdirect.co.uk/.../const_and_volatile.html
They are both standard 'C' keywords - so definitions should be found in any decent 'C' textbook.
Once you know what each one means individually, just think about what the combination would mean...