main() { /*int char name[50];*/ clrscr(); printf(" -Installation Guide-\n"); printf(" Turbo C - Turbo Corporation Software\n"); printf(" 'C' Programming.\n\n"); printf(" You can load TURBOC through both, DOS aswell as Windows.\n"); printf(" The procedure for installing the software through both is\n"); printf(" given below.\n"); printf(" ATTENTION: Please follow all the instructions for the\n"); printf(" --------- installation carefully.\n"); printf(" Ignoring any instruction can cause errors.\n\n"); printf(" Load the software in your computer either through DOS or\n"); printf(" through Windows.\n"); printf(" Follow the after-loading instructions properly for error-free\n"); printf(" installation of the software.\n\n"); getch(); printf(" >INSTRUCTIONS :\n\n"); printf(" *Loading the software through Windows :\n"); printf(" ------------------------------------\n"); printf(" 1.From My Computer\3&1/2 Floppy a: Drive, select\n"); printf(" the TURBOC folder by clicking on it once.\n"); printf(" 2.Press ALT+E - edit menu will pop down.\n"); printf(" 3.Click on 'Copy' in the edit menu.\n"); printf(" 4.Go back to My Computer & Double click C:\n"); printf(" 5.Press ALT+E again & click on 'Paste'.\n\n"); printf(" Wait till Windows copies the files in the TURBOC folder.\n"); printf(" The Loading of the software is completed.\n"); printf(" Please follow the after-loading instructions for error-free running\n"); printf(" of the software.\n\n"); printf("*Loading the software through DOS:\n"); printf(" --------------------------------\n"); printf(" NOTE : In case your 'c:\' drive already has any directory named\n"); printf(" 'turboc', follow the following step :\n"); printf(" C:\>REN TURBOC TC \n"); printf(" >Insert the TURBOC diskette into your A: Drive [Floppy Drive A:]\n"); printf(" Proceed with the actual installation as follows :\n"); printf(" C;\>MD TURBOC\n"); printf(" C:\>CD TURBOC\n"); printf(" C:\>TURBOC>COPY A:\TURBOC\*.*\n"); printf(" C:\>TURBOC>MD LIB\n"); printf(" C:\>TURBOC>CD LIB\n"); printf(" C:\>TURBOC>LIB>COPY A:\TURBOC\LIB\*.*\n"); printf(" C:\>TURBOC>LIB>CD..\n"); printf(" C:\>TURBOC>MD OBJ\n"); printf(" C:\>TURBOC>CD OBJ\n"); printf(" C:\>TURBOC>OBJ>COPY A:\TURBOC\OBJ\*.*\n"); printf(" C:\>TURBOC>OBJ>CD..\n"); printf(" C;\>TURBOC>MD INCLUDE\n"); printf(" C:\>TURBOC>CD INCLUDE\n"); printf(" C:\>TURBOC>INCLUDE>COPY A:\TURBOC\INCLUDE\*.*\n"); printf(" C:\>TURBOC>INCLUDE>CD..\n"); printf(" C:\>TURBOC>COPY A:\TURBOC\*.BGI\n\n"); printf(" The Loading of the software is completed.\n"); printf(" Please follow the after-loading instructions for error-free running\n"); printf(" of the software.\n\n"); printf("*IMPORTANT :\n"); printf(" After-loading instructions:\n"); printf(" --------------------------\n"); printf(" 1.After you have finished loading TURBOC, type TC in MSDOS Prompt.\n"); printf(" 2.You will get the TURBOC Editor screen.\n"); printf(" 3.Press ALT+O to get Options Menu.\n"); printf(" 4.Select Directories option by using arrow keys to move & enter\n"); printf(" to select.\n"); printf(" 5.Make the following changes in the given options :\n"); printf(" 1.Include Directories : C:\TURBOC\INCLUDE\n"); printf(" 2.Library Directories : C:\TURBOC\LIB\n"); printf(" 3.Turbo C Directory : C:\TURBOC\n"); printf(" Donot make any changes in the other options until you know the\n"); printf(" software, or till someone who posseses genuine knowledge\n"); printf(" of the software tells you to do so.\n"); printf(" NOTE:\n"); printf(" The software works best when installed correctly & carefully.\n"); printf(" Careless or improper installation may cause errors.\n"); printf(" So, please donot compromise on proper installation of\n"); printf(" the software.\n\n"); printf(" *Now, you can run the package by typing 'TC' in MSDOS Prompt.\n"); printf(" C:\>TURBOC>TC\n\n"); printf("OPTIONAL:\n"); printf(" If you want to see if the software works correctly:\n"); printf(" Enter a 'C' program in the Turbo C editor.\n"); printf(" [You can take an example from a good book on C-programming]\n"); printf(" Now, press ALT+C & compile the program.\n"); printf(" Correct the errors if any.\n"); printf(" Then press ALT+R & run the program.\n"); printf(" If output doesnot appear directly, press ALT+F5\n"); printf(" If the program's output matches standard output, \n"); printf(" your software has been properly installed.\n"); printf(" *If you have carefully followed the above instructions, you can write\n"); printf(" programs in 'C' using this software, compile them & run them without\n"); printf(" errors.\n\n"); printf(" GOOD LUCK!\n"); printf(" About the above :\n"); printf(" Turbo C Installation Help Provided by Shekhar A. Sherikar.\n"); printf(" The above help is intended only to guide the user through\n"); printf(" installation of the Turbo Corporation's Turbo C Software.\n"); printf(" There are no other intentions behind the above work,\n"); printf(" It is not intended to violate the Turbo Corporation's Rights\n"); printf(" or the rights of any other entity concerned.\n"); }