advantages and disadvantages of using Borland C++ / version
5.



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

Post New Answer

More C++ General Interview Questions

Can we make copy constructor private in c++?

0 Answers  


Which programming language's unsatisfactory performance led to the discovery of c++?

0 Answers  


What's the hardest coding language?

0 Answers  


What is #include iostream h in c++?

0 Answers  


What is the difference between #import and #include in c++?

0 Answers  






What is a constructor and how is it called?

0 Answers  


What is a driver program?

0 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What is the difference between a copy constructor and an overloaded assignment operator?

4 Answers   Belzabar, Citrix, Microsoft, Wipro,


What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


What is the function of I/O library in C++ ?

0 Answers   HCL,


What do you mean by public protected and private in c++?

0 Answers  


Categories