Is it possible to have a recursive inline function in c++?
What is main function in c++ with example?
Explain the operation of overloading of an assignment operator.
What do you mean by translation unit in c++?
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 difference between c++ and turbo c++?
Why seem interrupt handlers as member functions to be impossible?
Define a pdb file.
How can you quickly find the number of elements stored in a dynamic array?
What is a pointer how and when is it used?
Define the operators that can be used with a pointer.
What is the use of the this pointer?
Is it possible to provide default values while overloading a binary operator?