Why do we use vector in c++?
We use library functions in the program, in what form they are provided to the program?
Can manipulators fall in love?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
What is prototype for that c string function?
Tell me an example where stacks are useful?
What is c++ redistributable?
Give 2 examples of a code optimization?
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
Explain the auto storage classes in c++.
What is the array and initializing arrays in c++?