Here is the basic issue: when I use codeblocks to begin a "project" (they use this term as opposed to program...) I start with a console "project" and C::B immediately includes a file "main.c" file... with Hello world... the funny thing is the program name that I want to use is (example) would be something like Rick_practice.c for the source code file name.... So in the case of Rick_practice.c /* an example program for learning C*/ I am aware that all c programs should begin generally with a preprocessor statement like
include /* an input/output header file directive */
then int main (void) /* standard C main function*/ { blah, blah blah }
Problem: Codeblocks inserts a main.c (this seems to me be a .C source code "program" (as it has a dotC .c extension, within which Code::Blocks inserts "hello world" as part of every project... do I have the code blocks IDE not configured properly...
I have also tried to create an empty console project without using the C::B wizards...
I have downloaded the codeblocks user manual, a student version manual, (yeah I read them) looked on You tube, and as a last resort and am (reluctantly)coming to the experts at Stackoverflow, as I should be able to figure this out on my own... I am using the codeblocks IDE as it is free... Thank you for your time and please forgive my ignorance. Rick