You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
No Answer is Posted For this Question
Be the First to Post Answer
How new/delete differs from malloc()/free?
What is stl containers in c++?
What is "map" in STL?
difference between c and c++?
38 Answers Cognizant, IBM, Infosys, Oracle, Sarva Shiksha Abhiyan, Wipro,
Which of the Standard C++ casts can be used to perform a ?safe? downcast: a) reinterpret_cast b) dynamic_cast c) static_cast d) const_cast
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
How is c++ different from java?
What is code reusability in c++?
Check for Balanced Parentheses using Stack?
Do you know what is overriding?
Describe the main characteristics of static functions?
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