Answer Posted / jack
while compiler encounters following situation it uses the CC
1.when assigning one object to another object of same class
type
2.When an object is passed to the called function.....
3.when a function returns the object type and assigns it to
the another object..........
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
Do the parentheses after the type name make a difference with new?
What is a local reference?
What are the advantages of pointers?
Explain the auto storage classes in c++.
What is main function in c++ with example?
How much is c++ certification?
What is the difference between mutex and binary semaphore?
Write a code/algo to find the frequency of each element in an array?
Can class objects be passed as function arguments?
Is c better than c++?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
Where do I find the current c or c++ standard documents?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
Explain the difference between using macro and inline functions?
What is using namespace std in c++?