What is oop in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are keywords in c++?
What are friend functions in C++?
why c++ is not called strictly d super set of c?
What is the difference between a constructor and a destructor in C++?
Explain the difference between using macro and inline functions?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
what are the events occur in intr activated on interrupt vector table
What are raw sockets, where they are efficient?
What is different in C++, compare with unix?
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
Why seem interrupt handlers as member functions to be impossible?