I want to declare a variable to be volatile and const
just like this
int volatile conts *p= ...
so in this case i cannot change *p value
buti have declared it as volatile
how is it possible that *p is still constant after decalring it as volatile
Start Free Trial