user3308043
user3308043

Reputation: 827

Develop C in Code::Blocks?

I'm looking to develop C, not C++ in Code::Blocks. I've scoured the web to see if I can find out any specific information about how to do so in the IDE, but no luck.

Can I just use the Console Application template and code/compile as normal, using C syntax? Anyone with any idea of how this would work would be greatly appreciated.

Upvotes: 0

Views: 145

Answers (1)

David G
David G

Reputation: 96845

When you click Console Application this box should come up asking you to choose your language:

enter image description here

And as stated in the comments, when you are compiling C code, GCC uses the gcc compiler, and with C++, the g++ compiler.

Upvotes: 3

Related Questions