适用于 Ubuntu 的 C/C++ 编译器,如 Dev-C++

适用于 Ubuntu 的 C/C++ 编译器,如 Dev-C++

需要一个适用于 Ubuntu 的优秀 c/c++ 编译器。我喜欢编码或编程。

我在 Windows 上使用 Dev-C++。有没有像 Dev-C++ 一样好的编译器?

我尝试了 code::blocks ide,但是对我来说它似乎有点问题。

答案1

对于 C++,您可以安装g++

sudo apt-get install g++

对于 C,您可以安装gcc

sudo apt-get install gcc

如果您需要 IDE,您可以安装 NetBeans:

sudo apt-get install netbeans

答案2

我很喜欢“Sublime text”

对于 SUBLIME text2 :

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

对于 SUBLIME text3

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

相关内容