What is pointer in c++ with example?
No Answer is Posted For this Question
Be the First to Post Answer
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
What is oop in c++?
What is c strings syntax?
How can you link a c program with a c function?
What are the two types of comments, and how do they differ?
Difference between shift left and shift right?
What is the Maximum Size that an Array can hold?
55 Answers Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,
Why c++ is not a pure oop language?
Difference between overloaded functions and overridden functions
What are c++ tokens?
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
an operation between an integer and real always yeilds a) integer result b) real result c) float result