What are the storage qualifiers?
No Answer is Posted For this Question
Be the First to Post Answer
What are friend functions?
What new()is different from malloc()?
What is the difference between a type-specific template friend class and a general template friend class?
Explain what is polymorphism in c++?
Can a function take variable length arguments, if yes, how?
Why is c++ not purely object oriented?
How does list r; differs from list r();?
Explain overriding.
Can we use struct in c++?
How does the copy constructor differ from the assignment operator (=)?
plz send me National informatics center paper pattern
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