Explain the purpose of the keyword volatile.
No Answer is Posted For this Question
Be the First to Post Answer
What is the rule of three?
What is expression parser in c++
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
Is dev c++ a good compiler?
write a program in c++ to generate imp z y x w v w x y z z y x w x y z z y x y z z y z z
Which bit wise operator is suitable for putting on a particular bit in a number?
There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?
Write a corrected statement in c++ so that the statement will work properly. x =+ 7;
How can you create a virtual copy constructor?
What is a static element?
What are register variables?
What is pure virtual function? Or what is abstract class?