How is modularity introduced in C++?
No Answer is Posted For this Question
Be the First to Post Answer
When do you call copy constructors?
Explain terminate() function?
What and all can a compiler provides by default?
Profiler in projects?
What is the difference between public, private, protected inheritance?
What is pair in c++?
What is format for defining a structure?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
What is an Iterator class?
write the programme that convert a interger to biniry number
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
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()