If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ free?
What is the difference between while and do while loop? Explain with examples.
Explain data encapsulation?
What is an associative container in c++?
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
What is a dynamic binding in c++?
Is c++ high level programming language?
What are keywords in c++?
Is java easier than c++?
What is object file? How can you access object file?
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.
what do you mean by volatile variable?