When volatile can be used?
Answers were Sorted based on User's Feedback
Answer / reejusri
One more thing i want to add in above answer that is if
compiler sees keyword volatile it skips that variable from
optimization of code, becasue since it is very dymanic in
nature and to manage such type of variable for
optimaization is costly.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / mustafa
Volatile restricts the compiler in two ways
1-> No optimization algorithm should be applied to this
variable.
2-> When ever you need the value of the volatile variable
please take it from the memory.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / qqlin
it means this value will be changed unexpectedly. everytime
the program wants to use it, it can only be got from memory
but not from the register directly.
if you want a variable can be accessed by several threads,
you need this key word, like in ISR program, etc.
| Is This Answer Correct ? | 5 Yes | 0 No |
Why is null pointer used?
When can I use a forward declaration?
What are c++ redistributables?
Can manipulators fall in love?
Explain terminate() and unexpected() function?
Which algorithm do you like the most? Why?
What is #include iomanip?
What is the average salary of a c++ programmer?
Does there exist any other function which can be used to convert an integer or a float to a string?
What are raw sockets, where they are efficient?
Explain stack unwinding.
What is a type library?