I'm learning C
and using CodeBlocks,
I was in% 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
Why is it using g++
?