rodrigosantosbr

turbo c configuration

May 27th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Paste TurboC dir in C:/TC
  2. cd C:/TC
  3. TC.exe
  4. Inside Turbo C application navigate to Options > Directories.
  5. Make sure the directories are set as follows:
    a) Include directories: C:\TC\INCLUDE
    b) Library directories: C:\TC\LIB
    c) Turbo C directory: C:\TC
    d) Feel free to enter any value for the Output directory.
  6. Navigate to Options > Save options to save the above changes.
  7. When the application is restarted make sure to navigate to Options > Retrieve options to take the above options into effect again.
  8. To run your code navigate to Run > Run or Ctrl+F9.

Example code:

#include

int main(void)
{
  printf("Hello from HP 200LX");
  return 0;
}
Add Comment
Please, Sign In to add comment