what are the disadvantages of C++?
Answers were Sorted based on User's Feedback
Answer / dinesh
c++ is not pure object oriented and it is platform dependent
and doesn't support GUI
| Is This Answer Correct ? | 0 Yes | 7 No |
Answer / jelve
c++ is so hard to use. hard coded pl and hard to build
graphical user interface.
| Is This Answer Correct ? | 16 Yes | 28 No |
Answer / sarath
c++ is not pure object oriented.
c++ supports pointers that's why there is no security for data
c++ is platform dependent.
| Is This Answer Correct ? | 13 Yes | 28 No |
Answer / priya
It does not supprt ENCAPSULATION property of OOP's concept.
Because main method is present in outside of the class.
| Is This Answer Correct ? | 17 Yes | 44 No |
Answer / safe
1)it is partially support oop's concept.
2) not support dynamic memory allocation.
3) not support dynamic binding.
| Is This Answer Correct ? | 24 Yes | 84 No |
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
WAP find square root of any number (without using sqrt() )?
Is oop better than procedural?
How do you achieve polymorphism?
what uses of c++ language?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
What causes polymorphism?
What is a friend function & its advantage?
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
What is difference between class and object with example?
What is abstraction in oop?
What is polymorphism and example?