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 |
Describe private, protected and public – the differences and give examples.
What is the use of class in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ?
Why are arrays usually processed with for loop?
How java is different from c and c++?
Can we define a constructor as virtual in c++?
When does the c++ compiler create temporary variables?
What is the most useful programming language?
Can we use resume in error handling i.e. in the catch block
What is a .lib file in c++?
You want to link a c++ program to c functions. How would you do it?
Ask to write virtual base class code?