What is type of 'this' pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is insertion sorting?
How do you invoke a base member function from a derived class in which you have not overridden that function?
1.what is the difference between software & package &application.
an integer constant must have atleast one a) character b) digit c) decimal point
What is meant by forward referencing and when should it be used?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
Is swift better than c++?
Define stacks. Provide an example where they are useful.
What are the advantages of using typedef in a program?
When do you call copy constructors?
What does namespace mean in c++?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.