What is the use of setfill in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Describe the setting up of my member functions to avoid overriding by the derived class?
Explain abstraction.
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
How do you establish a has-a relationship?
What is a namespace in c++?
how to create window program in c++.please explain.
Why do we use templates?
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 the difference between mutex and binary semaphore?
What is the use of default constructor?
Explain how to initialize a const member data.