Explain 'this' pointer and what would happen if a pointer is deleted twice?
No Answer is Posted For this Question
Be the First to Post Answer
What is std namespace in c++?
How would you implement a substr() function that extracts a sub string from a given string?
How many lines of code you have written for a single program?
Which is best c++ or java?
What is the difference between ++ count and count ++?
What problem does the namespace feature solve?
Explain linked list using c++ with an example?
What are the debugging methods you use when came across a problem?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
Write the program form Armstrong no in c++?
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;
What is the role of static keyword for a class member variable?