What is optimization in c++?
when using volatile.optimization is not possible..what does
this mean?
Answer / 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 |
Profiler in projects?
What are the effects after calling the delete this operator ?
Why do we learn c++?
What is the difference between shallow copy and deep copy?
What is prototype in c++ with example?
Why do we use templates?
Why should we use null or zero in a program?
Define private, protected and public access control.
What language is a dll written in?
What is a far pointer? where we use it?
When there is a global variable and local variable with the same name, how will you access the global variable?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?