What is binary search in c++?


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

Post New Answer

More C++ General Interview Questions

founder of c++

7 Answers   Microtek, TCS, TeleCommand,


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


What is the difference between global variables and local variable

0 Answers  


What are different types of loops in c++?

0 Answers  


what is data abstraction in C++?

0 Answers  


Write about the retrieval of n number of objects during the process of delete[]p?

0 Answers  


When is the destructor called?

0 Answers  


Is arr and &arr are same expression for an array?

0 Answers  


How can you differentiate between inheritance and implementation in c++?

0 Answers  


Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.

0 Answers   TCS,


What is long in c++?

0 Answers  


What is the difference between operator new and the new operator?

3 Answers   Amazon, TCS, Wipro,


Categories