InterviewSolution
| 1. |
What Do You Mean By Volatile Variable? |
|
Answer» Variables prefixed with the keyword VOLATILE acts as a DATA type qualifier. The volatile keyword attempts to ALTER the default way in which the variables are STORED and the way the compiler handles the variables. It is a kind of instruction to the OPTIMIZER to not to optimize the varabli during compilation. Variables prefixed with the keyword volatile acts as a data type qualifier. The volatile keyword attempts to alter the default way in which the variables are stored and the way the compiler handles the variables. It is a kind of instruction to the optimizer to not to optimize the varabli during compilation. |
|