What is a hashmap c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 types of library?
What is unary operator? List out the different operators involved in the unary operator.
Explain the scope of resolution operator.
How do you decide which integer type to use?
What are c++ variables?
Write about the local class and mention its use?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
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 unexpected() function?
Under what conditions is multiple inheritance not recommended?
What is a node class?
What is the difference between global int and static int declaration?