What is the function of the keyword ‘volatile’ in C++?
Answer Posted / nashiinformaticssolutions
A qualifier known as the volatile keyword can be used on a variable to let the compiler know that the value of the variable could change at any time. The primary goal of utilizing volatile is to stop source code optimizations on objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is double in c++?
Is c++ low level?
What is input operator in c++?
Differentiate between structure and class in c++.
How much do coding jobs pay?
How would you implement a substr() function that extracts a sub string from a given string?
What is abstraction c++?
By using c++ with an example describe linked list?
What is the basic structure of a c++ program?
What gives the current position of the put pointer?
What is data types c++?
What is class and structure in c++?
What is a singleton c++?
Is vector a class 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