What is optimization in c++?
when using volatile.optimization is not possible..what does
this mean?
Answer Posted / sindhu
In C, the keyword Volatile tells the compiler that the value
of that variable may change unexpectedly(not using the code
that is found nearby).So the optimizer must do nothing to
the variable to make the code efficient.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can an improvement in the quality of software be done by try/catch/throw?
Tell me difference between constant pointer and pointer to a constant.
What's the order in which the local objects are destructed?
What is polymorphism and its type in c++?
What is time_t c++?
What is the full form of dos?
What is an operator function? Describe the function of an operator function?
Should the member functions which are made public in the base class be hidden?
What is difference between class and structure in c++?
Difference between struct and class in terms of access modifier.
What are references in c++? What is a local reference?
What is the main function c++?
What is runtime polymorphism in c++?
What is abstraction in c++ with example?
What is c++ and its uses?