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;
Do you know what are static and dynamic type checking?
What are c++ tokens?
What are the types of STL containers?
Which is not a valid keyword a) public b) protected c) guarded
What is the first name of c++?
What is the difference between the indirection operator and the address of oper-ator?
Is c++ the hardest programming language?
Explain selection sorting?
write program for palindrome
81 Answers Amazon, Aricent, CSC, GE, HCL, Infosys, Syntel, Temenos, Wipro,
What is the most useful programming language?
How to write a program such that it will delete itself after exectution?
What is the difference between function overloading and operator overloading?