What do you mean by storage classes?
Storage Classes are used to describe the features of a variable/function. These features basically include the scope, visibility and life-time which help us to trace the existence of a particular variable during the runtime of a program.
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by const correctness?
A milk carton can hold 3.78 litres of milk. Each morning, a dairy farm ships cartons of milk to a local grocery store. The cost of producing one litre of milk is $0.38, and the profit of each carton of milk is $0.27. Write a C++ program that prompts the user to enter the total amount of milk produced in the morning. Then display the number of milk cartons needed to hold milk, the cost of producing milk, and the profit for producing milk.
What will happen if when say delete this ?
Explain virtual class?
List the features of oops in c++?
What is an incomplete type in c++?
what is C++ objects?
What is the role of static keyword for a class member variable?
What size is allocated to the union variable?
What is the use of data hiding?
What is virtual function? Explain with an example
Is it possible to provide default values while overloading a binary operator?