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
Define private, protected and public access control.
Is multimap sorted c++?
What are the basic data types used in c++?
Explain how overloading takes place in c++?
What is auto type c++?
Can a built-in function be recursive?
Explain the use of virtual destructor?
What is scope operator in c++?
How do you initialize a string in c++?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
How many characters are recognized by ANSI C++?
Is there structure in c++?
What is difference between n and endl in c++?
Can a Structure contain a Pointer to itself?
In the derived class, which data member of the base class are visible?