Explain the purpose of the keyword volatile.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the difference between a template and a macro?

0 Answers  


What is std :: endl?

0 Answers  


class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.

2 Answers   Quark,


What is difference between rand () and srand ()?

0 Answers  


What is enum class in c++?

0 Answers  






What is RTRT tool?can it be used for automation?can it work on packet PC?

3 Answers  


Can I run c program in turbo c++?

0 Answers  


What is name mangling?

3 Answers  


How const int *ourpointer differs from int const *ourpointer?

0 Answers  


What is the difference between Pointer and a Reference? When you would use them?

4 Answers   Wipro,


What are the different types of polymorphism?

3 Answers  


Can constructor be static in c++?

0 Answers  


Categories