Is java easier than c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the uses of c++ in the real world?
Write a program using display() function which takes two arguments.
What is dangling pointers?and what is memory leak?
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
Do we have to use initialization list in spite of the assignment in constructors?
What is malloc in c++?
What are the uses of pointers?
Is swift faster than go?
Define copy constructor.
Do you know what are pure virtual functions?
How do you find out if a linked-list has an end?
What are files in c++?