What is a volatile variable in c++?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
A volatile variable indicates to the compiler that the variable can be changed at any time, preventing optimizations.
| Is This Answer Correct ? | 0 Yes | 0 No |
A volatile variable indicates to the compiler that the variable can be changed at any time, preventing optimizations.
| Is This Answer Correct ? | 0 Yes | 0 No |
When is the copy constructor called?
What is the difference between a declaration and a definition?
Why is c++ is better than c?
Should the this pointer can be used in the constructor?
What is endl c++?
What is bubble sort c++?
What are iterators in c++?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
What is an action class?
When there is a global variable and local variable with the same name, how will you access the global variable?
What is the difference between C and CPP?
Do we have to use initialization list in spite of the assignment in constructors?