C/C++ Compiler for Ubuntu like Dev-C++ [duplicate]

Need a good c/c++ compiler for Ubuntu. I like coding or programming.

I used Dev-C++ on Windows. Is there any good compilers like Dev-C++?

I tried code::blocks ide but it seems a little buggy for me.

2

2 Answers

For C++, you can install g++:

sudo apt-get install g++

For C, you can install gcc:

sudo apt-get install gcc

If you need an IDE you can install NetBeans:

sudo apt-get install netbeans
1

I like very much "Sublime text"

For SUBLIME text2 :

sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text

For SUBLIME text3

 sudo add-apt-repository ppa:webupd8team/sublime-text-3 apt-get update sudo apt-get install sublime-text-installer
2

You Might Also Like