How do you compile the source code with your compiler?
No Answer is Posted For this Question
Be the First to Post Answer
Which bit wise operator is suitable for checking whether a particular bit is on or off?
What is the difference between interpreters and compilers?
What is boyce codd normal form in c++?
What apps are written in c++?
Explain queue. How it can be implemented?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
What is the default access level?
What are advantages and disadvantages of Design patterns?
What is the difference between the functions rand(), random(), srand() and randomize()?
What is the difference between structure and class?
Do class method definitions?
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