Reputation: 827
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
Reputation: 96845
When you click Console Application this box should come up asking you to choose your language:
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