Give example of a pure virtual function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How to avoid a class from instantiation?
What are the types of STL containers?
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 pointer to member?
Write a program to interchange 2 variables without using the third one.
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
Mention the ways in which parameterized can be invoked. Give an example of each.
Define a nested class.
what is C++ objects?
Is linux written in c or c++?
Which software is used to run c++ program?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?