1
I’m learning C
and using Codeblocks,
I went on
File > New > Project > "Console Application" > "GO" > Next
and the question appears
Please select the language you want use.
I select C
. but when compiling a simple HelloWord
appears on the console
gcc -Wall -g -std=c11 -c /opt/workspace/learningC/Basics/main.c -o
g++ -o bin/Debug/Basics obj/Debug/main.o
Because he’s using the g++
?
The project is right as well as compiler. I am using Ubuntu 16.04 and Codeblocks 16.01
– Bruno Rozendo