Name the operators that cannot be overloaded.
Answer Posted / ritesh pal
sizeof . .* .-> :: ? :
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How would you use the functions sin(), pow(), sqrt()?
Will c++ be replaced?
Is c++ built on c?
write a programme to get a character and thier ASCII value
How do I get good at c++ programming?
What is the outcome of cout< a) 16 b) 17 c) 16.5
What are single and multiple inheritances in c++?
Explain the difference between new() and malloc() in c++?
What is private public protected in c++?
What is purpose of new operator?
What is the difference between a type-specific template friend class and a general template friend class?
What is the use of :: operator in c++?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
When must you use a pointer rather than a reference?
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.