Downloads

For C and C++ Programs (windows)


How to install Turbo C++
Step 1: Download Turbo C++ 3.2.
Step 2: If any previous "Turbo C++" version install in your computer, then first of all uninstall that.
Step 3: Extract downloaded "Turbo C++ 3.2.zip" file.
Step 4: Run "setup.exe" file.
Step 5: Follow the setup instructions.

------------------------------------------------

For Java Programs in CMD (windows)

Step 1: Download and install the latest version of the Java Platform, Standard Edition Development Kit. Note the installation directory for later. (eg: C:\Program Files\Java\jdk\bin)
Step 2: To make sure that Windows can find the Java compiler and interpreter:
Select Start -> Computer -> System Properties -> Advanced system settings -> Environment Variables -> System variables -> PATH.
[ In Vista, select Start -> My Computer -> Properties -> Advanced -> Environment Variables -> System variables -> PATH. ]
[ In Windows XP, Select Start -> Control Panel -> System -> Advanced -> Environment Variables -> System variables -> PATH. ]
Step 3: Add JDK Installed Path (C:\Program Files\Java\jdk\bin;) to the PATH variable.
Step 4: Create .Java Files and compile it using javac filename.java in cmd.
Step 5: Run the Java file using java classname in cmd.