What are the differences between the function prototype and the function defi-nition?
No Answer is Posted For this Question
Be the First to Post Answer
What are the c++ access specifiers?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
What is time h in c++?
If there are two catch statements, one for base and one for derived, which should come first?
What is the iunknown interface?
What is the main use of 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 a static element?
Is it possible to have a recursive inline function in c++?
What is class and structure in c++?
What is size of a object of following class? class Foo { public: void foo(){} }
What are the uses of static class data?