Lightweight C/C++ Editor

  • billion57
    11th Aug 2013 Member 0 Permalink

    Where can I get a simple C++ editor, something that does not have a complicated interface or a long startup time, something I can open and use at a whim? 

    Like Python's IDLE?

  • BigPig
    11th Aug 2013 Member 0 Permalink

    @billion57 (View Post)

    Notepad++?Or Notepad?lol

  • billion57
    11th Aug 2013 Member 0 Permalink

    Sorry, I meant something that can edit and run programs.

    Compile them.

    Edited once by billion57. Last: 11th Aug 2013
  • Sylvi
    11th Aug 2013 Moderator 0 Permalink

    To run C++ I think you have to compile it and there aren't any editors that are simple from what I know. I just setup my compiler environment and used Notepad++.

  • Oats
    11th Aug 2013 Member 0 Permalink

    Use quincy 2005. It's freeware, runs programs and it does the compiling automatictly. 

     

    It also includes sample tutorials and programs to make, as well a detailed wiki on each command. (to access via a button)

     

    edit: It's what I used to learn C

     

    Edited once by Oats. Last: 11th Aug 2013
  • greymatter
    11th Aug 2013 Member 0 Permalink
    @billion57 (View Post)
    Turbo C++ is awsome =P
    I first learned C++ in turbo before moving on to Dev and VC++
  • Jont
    11th Aug 2013 Member 0 Permalink

    Is ehh ... C/C++/C# umm... easy to learn like Python?

  • Oats
    11th Aug 2013 Member 0 Permalink

    C++ is the easiest out of the first two.

    C is easy but it's very base and you have to be methodological using it.

    C# I'm not sure.

    Edited 4 times by Oats. Last: 11th Aug 2013
  • mniip
    11th Aug 2013 Developer 0 Permalink
    @billion57 (View Post)
    if you're on linux or msys (git bash, cygwin, etc), vim has great integration with make
  • boxmein
    11th Aug 2013 Former Staff 0 Permalink
    @Oats (View Post)
    C++ is far from easy. You're far better off first learning C as it's far more simple and robust.
    C# is Java but for Windows only.

    @billion57 (View Post)
    You could probably hook up a C/++ build system to Sublime Text, which is the most awesome text editor ever.
    Sublime Test already has a C++ build system set up, all it takes is Ctrl+Shift+B to build & run & display output. Only limitation is it can't take standard input.

    HOWEVER, implying that you intend on compiling projects the size of mountains, you should really get MinGW and a knowledge of the lovely command line.
    Edited 2 times by boxmein. Last: 11th Aug 2013