What are the weaknesses of C++?
Answer / nashiinformaticssolutions
• Its high learning curve: C++ is a difficult programming language for novice developers to learn.
• Security: C++'s use of pointers and global variables presents a comparatively significant security risk.
• Memory management: Allocating memory manually can take a lot of time.
• Pointers: If used improperly, pointers' complexity will cause performance issues.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a code/algo to find the frequency of each element in an array?
Write a program to show polymorphism in C++?
What is the main use of c++?
Can we use this pointer inside static member function?
Where and why do I have to put the "template" and "typename" keywords?
What is the limitation of cin while taking input for character array?
What is a class template?
Differentiate between a deep copy and a shallow copy?
What is a parameterized type?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
What C++ libraries are you proficient with?
Is the declaration of a class its interface or its implementation?