Why we use #include iostream in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
What is a storage class used in c++?
Define private, protected and public access control.
What is c++ similar to?
What is the difference between new/delete and malloc/free?
What is the difference between public and private data members?
How would you find out if a linked-list is a cycle or not?
Which should be more useful: the protected and public virtuals?
Why do we use using namespace std in c++?
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 constructor in C++?
How do you clear a buffer in c++?