What is the advantage of c++ over c?



What is the advantage of c++ over c?..

Answer / Drishti Bharti

The usefulness of C and C++ depends on the specific project requirements. Both have their strengths: C is often used for system programming, while C++ is widely used for game development, GUI applications, and other projects that require object-oriented programming.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).

1 Answers  


Why iomanip is used in c++?

1 Answers  


Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].

1 Answers  


What is the latest version on c++?

0 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


What is optimization in c++? when using volatile.optimization is not possible..what does this mean?

1 Answers  


Why seem interrupt handlers as member functions to be impossible?

1 Answers  


Explain the pure virtual functions?

1 Answers  


What do you mean by translation unit in c++?

2 Answers  


How can you link a c++ program to c functions?

1 Answers  


What is bubble sort c++?

1 Answers  


Can a program run without main in c++?

1 Answers  


Categories