STL (140)
OOPS (873)
C++ General (2409) 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
1 4905which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
4 6396a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?
CTS,
2 4514Hi i need to Acess a variable "int Intval" in the below mentioned code .How to Access it guys i am waiting for your reply
3 4836How to Increment the value of the empid E001 for each and every employee by using the programe?
1 3671what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
4 8020
What are the 2 main types of data structures?
Is eclipse good for c++?
Which should be more useful: the protected and public virtuals?
What does obj stand for?
Is c++ double?
Write a c++ program to display pass and fail for three student using static member function
Does improper inheritance have a potential to wreck a project?
Do you know about C++ 11 standard?
What are the restrictions apply to constructors and destructors?
What is a far pointer? where we use it?
Give example of a pure virtual function in c++?
Why should we use null or zero in a program?
What is the syntax for a for loop?
How do we implement inheritance in c++?
Can you declare an array without a size in c++?