What is buffering in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can a class be static in c++?
What is private, public and protected inheritance?
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 )?
What is time_t c++?
Difference between Operator overloading and Functional overloading?
Differentiate between a deep copy and a shallow copy?
What does std :: flush do?
What is the main function c++?
How would you find out if a linked-list is a cycle or not?
How do you save a c++ program?
Brief explaination about #include<iostream.h>, cin and cout
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.