Do you know the problem with overriding functions?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about Garbage Collector?
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
Difference between static global and global?
16 Answers Microsoft, Symphony, Wipro,
Which should be more useful: the protected and public virtuals?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Can we declare destructor as static? Explain?
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
why c++ is not called strictly d super set of c?
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
What is the use of :: operator in c++?
The "virtual" specifier in a member function enables which one of the following? a) Monmorphism b) Late binding c) Metamorphism d) Solomorphism e) Inheritance
What is the type of 'this' pointer? When does it get created?