The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Linux IDE

    Discussion in 'Linux Compatibility and Software' started by graycolor, Jan 31, 2010.

  1. graycolor

    graycolor Notebook Evangelist

    Reputations:
    30
    Messages:
    459
    Likes Received:
    0
    Trophy Points:
    30
    What to start programming in C/C++ What's the best ide for a newbie? :D
     
  2. Lithus

    Lithus NBR Janitor

    Reputations:
    5,504
    Messages:
    9,788
    Likes Received:
    0
    Trophy Points:
    205
    Vim/Emacs/gedit with gcc and gdb. Do it the old fashioned way.
     
  3. Gintoki

    Gintoki Notebook Prophet

    Reputations:
    2,886
    Messages:
    6,566
    Likes Received:
    0
    Trophy Points:
    205
    If you use Linux then don't be a noob. Look up IDE's and try them and pick the one you like best. My suggestion is Geany.
     
  4. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    Anjuta and KDevelop are both pretty good. The best way to get started programming C/C++ is to get a book or take a class ;)
     
  5. Christoph.krn

    Christoph.krn Notebook Evangelist

    Reputations:
    263
    Messages:
    423
    Likes Received:
    0
    Trophy Points:
    30
    If you want to really learn C/C++, don't let the IDE do the typing work for you, this way you will remember things better. So, +1 for geany. It's basically a blown-up (in a positive way) text editor.
     
  6. gdansk

    gdansk Notebook Deity

    Reputations:
    325
    Messages:
    728
    Likes Received:
    42
    Trophy Points:
    41
    This is so true. I've had to use Eclipse for lab assignments, as such I began to use it to remember names and I don't feel as if I'm learning Java as well as I learned C++.

    I just use gedit (or anything with code highlighting), gcc and gdb on Linux.
     
  7. Christoph.krn

    Christoph.krn Notebook Evangelist

    Reputations:
    263
    Messages:
    423
    Likes Received:
    0
    Trophy Points:
    30
    Oh, if you like using gedit for C, you would probably love geany!
     
  8. graycolor

    graycolor Notebook Evangelist

    Reputations:
    30
    Messages:
    459
    Likes Received:
    0
    Trophy Points:
    30
    Thanks, everyone I think I'm gonna go with Vim.