Do we have private destructors?
Answers were Sorted based on User's Feedback
Answer / jack
No we cannot have private destructors and private
constructors.........
| Is This Answer Correct ? | 4 Yes | 23 No |
Difference between static global and global?
16 Answers Microsoft, Symphony, Wipro,
Define pure virtual function?
How many pointers are required to reverse a link list?
Differentiate between an external iterator and an internal iterator?
Differentiate between a copy constructor and an overloaded assignment operator.
Define inline function
i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem
Explain virtual destructor?
How can you say that a template is better than a base class?
How to avoid changing constant values?
What is the Maximum Size that an Array can hold?
55 Answers Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,
When does a name clash occur in c++?