To convert Borland C++ version 5.02 programs to Dev-C++ 4.9.9.2 programs
annedawson.com/borland_to_dev.html
Last updated: Saturday 21st January 2006, 8:12 PT, AHD
************************************************************
1. At the top of the Dev-CPP code include this statement:
using namespace std;
************************************************************
2. replace the statement:
#include <iostream.h>
with
#include <iostream>
************************************************************
3. remove the statement (if it exists):
#include <conio.h>
************************************************************
4. Replace the main function header with:
int main()
************************************************************
5. replace all statements:
getch();
with
system("Pause");
************************************************************
6. The last line in the main function must be:
return 0;
************************************************************