What is searching? Explain linear and binary search.
No Answer is Posted For this Question
Be the First to Post Answer
Difference between pointer to constant and constant pointer to a constant. Give example.
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
write the prime no program in c++?
What is the limitation of cin while taking input for character array?
Difference between class and structure.
Can a constructor be private?
Will the following program execute?
How the compilers arranges the various sections in the executable image?
What is a storage class in C++
What operator is used to access a struct through a pointer a) >> b) -> c) *
Explain linked list using c++ with an example?
Can you pass a vector to a function?