If you want to share several functions or variables in several files maitaining the consistency how would you share it?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between realloc() and free().
What causes a runtime error c++?
What is an Iterator class?
Explain what you mean by a pointer.
How do we implement inheritance in c++?
Define whitespace in C++.
Explain virtual class and friend class.
What are the basics of local (auto) objects?
What is array give example?
What is operators in c++?
Is std :: string immutable?
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