How to Compile and Debug C++ in Notepad++ using Turbo C++ Compiler

21,242

Solution 1

Notepad++ has the run feature, but as far as I know it's unable to help you debugging (e.g. stepping through code, watching variables, etc.).

Your best bet would be using a simple batch file to compile the code and run your debug commands, but as far as I know you can't include everything into Notepad++ (i.e. it's no real C/C++ IDE).

Only option you've got is adding the created batch file as the program to be run by NppExecute.

Edit: Overall, as rkosegi suggested, if possible, use a more up-to-date toolchain.

Microsoft's Visual C++ Express Edition can be downloaded for free and used for private or commercial projects.

If you target cross platform code, it might be easier to use MinGW to use GCC/G++ under Windows.

Solution 2

I wondering why somone wants to use turbo C++.If you run Windows, just use Visual Studio Express, or Dev-C++.If you still want to use Turbo C you will run into several problems with compatibility of this ancient software.

Share:
21,242
sandbox
Author by

sandbox

Updated on September 11, 2020

Comments

  • sandbox
    sandbox over 3 years

    I have installed NppExecute plugin in notepad++. I am not able to figure out next step to compile and debug C,C++ programs in Notepad++.

    System Details: (a) Turbo C directory C:\TC (b) OS Windows 7

    Please provide complete details on how to set Environment Variable and Scripts for Compiling and Debugging.

  • sandbox
    sandbox over 12 years
    I am a php developer. I like coding in notepad++ :)
  • rkosegi
    rkosegi over 12 years
    @sandbox : You are PHP developer, but did you ever try eg, eclipse or other IDE instead of notepad++? By the way, I use notepad++, it's my favorite text editor, but you will NEVER create big project with just text editor, even if it's sophisticated.No offense, I just want to recommend correct way how to develop in C.
  • rkosegi
    rkosegi over 12 years
    @Styne666: Yes, you're right this is also alternative, but has no IDE
  • Daniel Fischer
    Daniel Fischer over 12 years
    @sandbox you can do that still. Just use any command line compiler.
  • Daniel Fischer
    Daniel Fischer over 12 years
    @rkosegi People have done big projects with just text editors. Now get off my lawn ;)
  • rkosegi
    rkosegi over 12 years
    @Daniel Fischer: Everything is possible, but show me productivity of development and application lifecycle management with your notepad or vim ;)
  • Daniel Fischer
    Daniel Fischer over 12 years
    vim?? ed, ed is the only one ;) Jokes aside, of course one should use an IDE now that good ones are available. But people can do more things without advanced technology than is widely imagined.
  • Cody Gray
    Cody Gray over 12 years
    The problem isn't the text editor, the problem is the compiler. Yes, you can use any text editor you want, or even an IDE if it tickles your fancy (it tickles mine). That doesn't mean you can or should compile code written in this century with Turbo C++.