0
What is the use of volatile keyword in c language
C language
2 Answers
0
What is the difference between volatile x=1 and const volatile x=1
- 1
It tells the compiler that the value of the variable may change at any time--without any action being taken by the code the compiler finds nearby.