What are features of c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the basic structure of c++ program?

0 Answers  


If you want to share several functions or variables in several files maitaining the consistency how would you share it?

0 Answers  


What is the difference between an external iterator and an internal iterator?

0 Answers  


How to stop conversions among objects?

5 Answers   Symphony,


You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so

1 Answers  






Explain binary search.

0 Answers  


What does namespace mean in c++?

0 Answers  


Why seem interrupt handlers as member functions to be impossible?

1 Answers  


I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.

0 Answers  


You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.

4 Answers  


write infinite loop in C++ which does not use any variable or constant?

3 Answers  


What is a vector c++?

0 Answers  


Categories