Are c and c++ different?
No Answer is Posted For this Question
Be the First to Post Answer
What is function overriding in c++?
What is a local reference?
Is c++ a software?
What is the auto keyword good for in c++?
Why c++ does not have finally?
What is the difference between static global and global ?
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 reference type and pointers.
what is data abstraction in C++?
What are the steps in the development cycle?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
What is the difference between global int and static int declaration?