Write a C++ program which will compute the volume of a sphere or a cylinder after prompting the user to type the first character for the shape name.
Please post the model question paper of hal?
Explain selection sorting. Also write an example.
What is "mutable" keyword?
What are the 3 levels of programming languages?
What are the advantages of c++? Explain
How do I get good at c++ programming?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
What is ios in c++?
Difference between pointer to constant and constant pointer to a constant. Give example.
what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking
How can you say that a template is better than a base class?
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