What are the fundamental features of an object-oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C++ Program to Reverse a Number using while loop.
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What Is A Default Constructor in C++ ?
What is bool in C++
How many times will this loop execute? Explain your answer.
Explain about Searching and sorting algorithms with complexities
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
What is the difference between virtual functions and pure virtual functions?
What are pass by value and pass by reference?what is the disadvantage of pass by value?
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
What is constant keyword in C++? Illustrate its various uses.
0 Answers Akamai Technologies, Infogain,
Execute the qsort () in c/sort() in c++ library or your own custom sort which will sort any type of data on user defined criteria.