Volatile Keyword in C/C++
Volatile is a qualifier that is applied to a variable when it is declared. It tells the compiler that the value of the variable may change any time. The implications of this are quite serious. It is required when you experience the following in C/C++ code: Syntax: For declaration of volatile variable, make use of […]
