What are the strengths of C++?
Answer / nashiinformaticssolutions
Portability: C++ applications run on a variety of operating systems.
• Multi-paradigm frameworks: C++ supports object-oriented, generic, and procedural programming frameworks, providing a high degree of programming freedom.
• Scalability: C++ is a robust programming language that can be used to write both low-level, simpler programs and resource-intensive systems.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a template in c++?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What do you mean by funtion prototype?
How is c++ different from java?
Is c++ an integer?
What is the full form of stl in c++?
What is the difference between set and map in c++?
What is the difference between equal to (==) and assignment operator (=)?
Explain this pointer?
differance between copy & clon
What is an object in c++?