advantages and disadvantages of using Borland C++ / version
5.
Answer / queen of hearts
Advantages:
Borland C++ 5.0 was designed to be the most productive, most customizable, most flexible version ever. It helps you with 32-bit Windows operating system migration, provides support for changing standards.
Disadvantages:
•No longer supported - Old version of less popular compiler
•Newer, better supported free compilers exists
•Much smaller community compared to GCC or MVCC
•Less access to new technologies
•Doesn't support new C++ features
| Is This Answer Correct ? | 11 Yes | 2 No |
What is array in c++ example?
What are register variables?
What is difference between initialization and assignment?
12 Answers HCL, HP, Infosys,
Memory is not a constraint. In a single iteration(NOTE: you can't go back), how will you find out the 10th last node/item in a linked list.
16 Answers BNB, FDS, Goldman Sachs, Nagarro,
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
How do you know that your class needs a virtual destructor?
What is a hashmap c++?
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
what are prototypes
Write a program to reverse a linked list?
8 Answers Catalytic Software, Satyam,
Does c++ support multilevel and multiple inheritances?
What is the size of a vector?