What is the best free c++ compiler for windows?
What is encapsulation in C++? Give an example.
0 Answers HAL, Honeywell, Zomato,
What is the difference between the functions rand(), random(), srand() and randomize()?
When does a 'this' pointer get created?
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 is the Diffrence between a "assignment operator" and a "copy constructor"?
What is c++ runtime?
What is general form of pure virtual function? Explain?
What are the techniques you use for debugging?
What is the difference between the indirection operator and the address of oper-ator?
Explain the difference between abstract class and interface in c++?
Is c++ the most powerful language?
why we cant create array of refrences