What is the use of c++ programming language in real life?



What is the use of c++ programming language in real life?..

Answer / Km Purnima Jaiswal

C++ is used in a wide range of applications in real life. It is used for developing operating systems, game development, system software, financial applications, and more. C++ also forms the basis for many other programming languages.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Is c++ vector a linked list?

1 Answers  


Explain public, protected, private in c++?

1 Answers  


What are the static members and static member functions?

1 Answers  


If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 Answers  


What are iterators in c++?

1 Answers  


What are the implicit member functions of class?

1 Answers  


What are the effects after calling the delete this operator ?

1 Answers  


What is the oldest programming language?

1 Answers  


What is difference between rand () and srand ()?

1 Answers  


You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so

1 Answers  


What is stack unwinding?

1 Answers  


Write a C++ program that asks the user to choose a number between 1 and 1000. Then, your program should be able to guess the number by asking the user no more than 10 yes/no questions. Use a while loop in your program

1 Answers  


Categories