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 |
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).
Why iomanip is used in c++?
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].
What is the latest version on c++?
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"?
What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
Why seem interrupt handlers as member functions to be impossible?
Explain the pure virtual functions?
What do you mean by translation unit in c++?
How can you link a c++ program to c functions?
What is bubble sort c++?
Can a program run without main in c++?