what is the main difference between c and c++?
Answer Posted / shidra
apart from the above definitions remember always that c++ is a super set of c that means all the operations as well as functions which are applicable in c are also available in c++
e.g.-U CAN USE PRINTF AND SCANF IN C++ AS WELL
whereas the reverse is not true as far as my knowledge says
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the important feature of inheritance?
What is overloading and its types?
What does it mean when someone says I oop?
What is polymorphism programming?
Question In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Question Submitted By :: Sunil Kumar I also faced this Question!! Rank Answer Posted By Re: In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest. Answer # 1 use copy constructors 0 Shanthila There is something to be taken care in destructor, in copy constructor, suppose the memory is assigned to the embedded member object pointer with the parameter passed value, but if some other objects of different class also are pointing to this memory, then if some one deletes the object then this class member pointer object will become dangling, or if the object is not deleted properly then there will be memory leak. Please suggest the design change required to handle or avoid this situation
What is multilevel inheritance explain with example?
What do you mean by variable?
What is polymorphism explain its types?
What is difference between polymorphism and inheritance?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
What are the three main types of variables?
How is polymorphism achieved?
Get me an image implementation program.
Why do we use oops?
What are two types of polymorphism?