what do you mean by volatile variable?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ used anymore?
Is it possible for the objects to read and write themselves?
How do you sort a sort function in c++ to sort in descending order?
What is a v-table?
Is c++ double?
What are the differences between a struct and a class in C++?
What are all predefined data types in c++?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
write a programme to get a character and thier ASCII value
What is ctime c++?
Describe the process of creation and destruction of a derived class object?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;