What is the full name of logo?
No Answer is Posted For this Question
Be the First to Post Answer
What does it mean to declare a destructor as static?
How new/delete differs from malloc()/free?
Can we distribute function templates and class templates in object libraries?
what does the following statement mean? int (*a)[4]
What is the difference between "calloc" and "malloc"?
Difference between static global and global?
16 Answers Microsoft, Symphony, Wipro,
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
What is the difference between the parameter to a template and the parameter to a function?
What is Namespace?