List the issue that the auto_ptr object handles?
No Answer is Posted For this Question
Be the First to Post Answer
How const functions will be treated by compiler?
What is vector string in c++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
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.
Write some differences between an external iterator and an internal iterator?
Is structure can be inherited?
Why is the function main() special?
What are pointers used for c++?
Write the program form Armstrong no in c++?
How to create a reference variable in C++
How do you master coding?
If I is an integer variable, which is faster ++i or i++?