What is optimization in c++?
when using volatile.optimization is not possible..what does
this mean?



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

Post New Answer

More C++ General Interview Questions

Which programming language is best to learn first?

0 Answers  


Differentiate between an array and a list?

0 Answers  


Explain the difference between new() and malloc() in c++?

0 Answers  


Which algorithm do you like the most? Why?

2 Answers   Google,


Can you overload the operator+ for short integers?

0 Answers  






Define upcasting.

0 Answers  


what is oops

2 Answers  


Describe linked list using C++ with an example.

0 Answers  


If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?

0 Answers  


What are the steps in the development cycle?

0 Answers  


What is microsoft c++ redistributable?

0 Answers  


What is class syntax c++?

0 Answers  


Categories