Is c++ still being used?
Answer / Raju Paswan
Yes, C++ is still widely used for a variety of applications, including game development, system programming, and high-performance computing. It is also commonly used in financial trading systems due to its efficiency and flexibility.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write about the access privileges in c++ and also mention about its default access level?
why and when we can declar member fuction as a private in the class?
What is general form of pure virtual function? Explain?
Explain friend class?
What is public, protected, private in c++?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
Explain the concept of inheritance in C++.
What is namespace & why it is used in c++?
why is iostream::eof inside a loop condition considered wrong?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
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.
What is the use of object in c++?