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 |
Explain function overloading and operator overloading.
Name the debugging methods that are used to solve problems?
Which coding certification is best?
Define a pointer to a data member of the type pointer to pointer?
How does code-bloating occur in 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 inline functions?
What is the advantage of an external iterator.
Do class method definitions?
What is the Diffrence between a "assignment operator" and a "copy constructor"?
Hi i need to Acess a variable "int Intval" in the below mentioned code .How to Access it guys i am waiting for your reply
What does the ios::ate argument do?