Download Borland C++ for Windows 8, Windows 7 and Windows XP
I got a lot of search request for a download of Borland C++ which will word on Windows 8, so I decided to write this short article: You can use this link here to download an archive for Borland C++. To...
View ArticleHow to install Borland C++ on Windows 8 and avoid “Application can’t run on...
A lot of complaints were made regarding my video on how to install Borland C++ 3.1 on Windows 8. To some of you, Borland C++ can be installed with just a few clicks, but to others there is an error...
View ArticleInstalling Borland C++ on dosBox: The solution for “too many subdirectories...
On the article in which I gave some steps for installing Borland C++ on Windows 8 by using dosBox, I didn’t mention that there is one error which can occur on the installation process. So far I noticed...
View ArticleThe sum of the first positive n integer numbers [using “while”]
The idea of the following sequence is to create a C++ function which will calculate the sum of all the positive numbers from 0 to a user defined number (n). #include void main() { int n, sum=0, a;...
View ArticleThe sum of the first n integer numbers [using “for”]
We are going to use a C++ program sequence in order to calculate the sum of the first “n” given positive integer numbers by using “for”: #include void main() { int n, sum=0; cout<<"Give the last...
View ArticleThe sum of the first n integer numbers [using “do while”]
By using a C++ program, we are going to determine the sum of the first “n” positive integers as we use the “do whil”e structure: #include void main() { int n, sum=0; cout<<"Give the last number...
View ArticleHow to download and install Borland C++ 3.1 on Linux (Ubuntu & others)
We all know that Borland released Borland C++ 3.1 to run on Windows operated systems, but there is a way to use this software on linux environments as well. The steps are quite simple: Get a copy of...
View ArticleQuadratic (second-degree) equation in C++ (CPP)
A quadratic or second degree equation has the following mathematical syntax: where x is the variable, and a,b,c are user defined constant numbers. The following code will solve the quadratic equation...
View ArticleFree C# (csharp) compiler for Windows 7 and Windows 8 (Microsoft Visual...
As you all know, Microsoft won’t allow developers to use free copies of their .Net compilers unless the developing is for learning purposes only. In other cases, freelance developers or companies...
View ArticleDownload Turbo C++ 3.0 for Windows 7, Windows 8 and Windows XP
Turbo C is one of the most used C++ compilers in most of the world’s educational systems. You can use the following link to download this abandonware and install it on any operating systems by using...
View Article