What is optimization in c++?
when using volatile.optimization is not possible..what does
this mean?
Answer Posted / 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 View All Answers
Are c and c++ similar?
Does c++ have finally?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
Does c++ support exception handling?
What is an associative container in c++?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
Differentiate between the message and method in c++?
What is operators in c++?
Where the memory to the static variables is allocated?
Is c++ free?
How many static variables are created if you put one static member into a template class definition?
Explain pass by value and pass by reference.
What are guid? Why does com need guids?
What are 2 ways of exporting a function from a dll?
Describe linked list using C++ with an example.