Can class objects be passed as function arguments?
No Answer is Posted For this Question
Be the First to Post Answer
What is the c++ programming language used for?
Can I create my own functions in c++?
What is the best c++ compiler for windows 10?
What are the differences between public, private, and protected access?
12 Answers IBM, Oracle, Wipro,
Difference between overloaded functions and overridden functions
Is dev c++ free?
What are the manipulators in c++?
Define linked lists with the help of an example.
What are the techniques you use for debugging?
What is volatile and pragma? When they are used?
print first nodd numbers in descending order
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