What does return 0 do in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Show the declaration for a static function pointer.
What are the different types of comments allowed in c++?
What is a "RTTI"?
What are c++ variables?
what are the characteristics of Class Members in C++?
What are the 4 types of library?
If there are two catch statements, one for base and one for derived, which should come first?
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
How does a copy constructor differs from an overloaded assignment operator?
How do you know that your class needs a virtual destructor?
What is main function in c++ with example?
What is the latest c++ standard?