Hye. I used to do programming in windows but now I am switched to Linux. I tried to get the IDE of c/c++ from Ubuntu software center but it is also not providing me any IDE for c/c++. I want to Install c/c++ IDE just like turbo c or Dev c++ in Ubuntu...
Asked
Active
Viewed 9,861 times
2 Answers
3
On ubuntu, you can install every dev tools with the build-essential package.
sudo apt-get install build-essential
You have to choise when you do C/C++ on linux. Use a text editor with each dev tools individualy or use a IDE that include the text editor and all needed tools.
Good editors:
- Vim
- emacs
- Geany
- Scite
- sublime text
Good IDE:
- Code::Block
- Netbeans
- Eclipse
- QtCreator
Just1602
- 85
1
There are several options, try searching for Code::Blocks, Netbeans or Geany in the Ubuntu Software Center, for example. These are IDEs for C/C++.
thiagowfx
- 865