logan007
logan007

Reputation: 67

How to install C++11 compiler on Ubuntu?

I have recently installed Ubuntu 20.04 on my Windows Computer and now want to install C++ 11 compiler on it. I have installed the g++ compiler but now am not able to install or upgrade it ti c++11 compiler. Can someone please tell how to do it?

Upvotes: 1

Views: 8324

Answers (1)

Alex
Alex

Reputation: 10126

When you compile use -std=c++11 flag:

g++ -std=c++11 main.cpp

UPD

As per comment below:

-std=c++17 -pedantic

Upvotes: 2

Related Questions