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
what is upcasting in C++?
What is the difference between delegation and implemented-in-terms-of?
What is c++ vb?
What is called array?
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
What is the use of endl?
what are the iterator and generic algorithms.
What is singleton pattern in c++?
Is recursion allowed in inline functions?
What are namespaces in c++?
What is microsoft c++ redistributable 2013?
When does a 'this' pointer get created?
If you don’t declare a return value, what type of return value is assumed?
What is the best c++ book?
Should a constructor be public or private?