What are the extraction and insertion operators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is overloading unary operator?
Can circle be called an ellipse?
What is a constant reference?
Explain Text Manipulation Routines?
What is the use of seekg in c++?
In c++, what is the difference between method overloading and method overriding?
Write a C program to calculate the salary of each employee in your company. You need to input the hours worked and the hourly rate. The company pays 1.5 times the hourly rate for all hours worked in excess of 48 hours. Use the formulas below to calculate the salary: if employee worked less than 48 hours salary = hours * rate; if employee worked more than 48 hours salary = 48.0 * rate + ( hours − 48.0 ) * rate * 1.5; You are required to use a loop to produce the sample output as given below.
Can comments be nested?
How many keywords are used in c++?
What is code reusability in c++?
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 )?
Can a constructor return a value?