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 |
What is null pointer and void pointer and what is their use?
What are inline functions? What is the syntax for defining an inline function?
Keyword mean in declaration?
What is the difference between mutex and binary semaphore?
When is dynamic checking necessary?
Distinguish between a # include and #define.
How do you establish an is-a relationship?
Can you pass a vector to a function?
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
Is c++ pass by reference or value?
What are signs of manipulation?
What is an accessor in c++?