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
Does c++ have string data type?
State two differences between C and C++.
Write a struct time where integer m, h, s are its members?
Explain the advantages of using friend classes.
What programming language should I learn first?
Write about a nested class and mention its use?
Can recursive program be written in C++?
What are the various access specifiers in c++?
Describe protected access specifiers?
What are c++ templates used for?
Define what is constructor?
Which function should be used to free the memory allocated by calloc()?
What is the this pointer?
Does c++ have finally?
What is the advantage of c++ over c?