What is ios in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Which bit wise operator is suitable for turning off a particular bit in a number?
How did c++ get its name?
What is multithreading and what is its use?Whats are multithreading techniques used in C++?
What is the size of integer variable?
Why do we need runtime polymorphism in c++?
Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
What is runtime errors c++?
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.
0 Answers An-Najah National University,
What is the size of a vector?
Can comments be nested?
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
What are the methods of exporting a function from a dll?