njay
njay

Reputation: 79

C++ code doesn't work in geany

I'm trying geany to run my c++ program but it doesn't work. An error saying "g++ is not recognized an internal or external command, operable program or batch file" comes when built. What i have missed??

Upvotes: 0

Views: 2096

Answers (1)

Berke Cagkan Toptas
Berke Cagkan Toptas

Reputation: 1034

Probably you don't have g++ installed on your computer. Open Terminal and write : sudo apt-get install g++ (assuming you are working on linux)

Upvotes: 2

Related Questions