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 an adaptor class or wrapper class in c++?
How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever
17 Answers Datavance, Quark, VEL, Wipro,
What is a .lib file in c++?
Which ide is best for c++?
What is the limitation of cin while taking input for character array?
Do vectors start at 0 c++?
What is the difference between method overloading and method overriding in c++?
What are pointer-to-members in C++? Give their syntax.
What is array in c++ pdf?
What is the topic of the C++ FAQ list?
Can a constructor return a value?
What is a responder chain?