Do the parentheses after the type name make a difference with new?
No Answer is Posted For this Question
Be the First to Post Answer
What is anonymous object in c++?
Show the declaration for a pointer to function returning long and taking an integer parameter.
Is c++ fully object oriented?
Which sort does c++ use?
Explain binary search.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
What do the keywords volatile and mean mutable?
What is the use of endl?
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
What is function overriding?
Why was c++ made?
Which should be more useful: the protected and public virtuals?