What is an explicit constructor?
Answer / nimish singh
A conversion constructor declared with the explicit keyword. The compiler does not use an explicit constructor to implement an implied conversion of types. It's purpose is reserved explicitly for construction.
| Is This Answer Correct ? | 0 Yes | 0 No |
sir there is some problem with nokia5130c-2,when we are trying to upload movies from net then there is a error occurred"FORMAT NOT SUPPORTED" bt its all ready in 3gp format.please tell me what i do now?
What is polymorphism and its type in c++?
What's the most powerful programming language?
What is prototype for that c string function?
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.
Difference between delete and delete[]?
5 Answers Infosys, TCS, Virtusa,
What do you mean by inheritance in c++?
What is pointer with example?
Can we use resume in error handling i.e. in the catch block
Write about the local class and mention its use?
Can inline functions have a recursion? Give the reason?
What does new return if there is insufficient memory to make your new object?