Here's what you should do:
The GCC everybody talks about is actually NOT project builder... It's a command within Terminal.
I'm going to set up some steps for ya:
1.- Find and Run Terminal (it's in a directory called Utilities, within Applications, in your hard drive)
2.- Type your program in a text file format. (You can use either emacs or pico, but since you say you are new to this endeavors, I would recommend using BareBones Edit lite, which you can get at
www.barebones.com. You can also use TextEdit, included in you copy of MacOSX, in the folder Aplications). Anyway, when you type the program, save it in you Home folder (the one whose icon is a house) with a filename ending in .c (for example, hello.c).
3.- The program should read:
#include <stdio.h>
int main(void)
{
printf("Hello");
return 0;
}
And that's it.
4.- After you saved your program, go to terminal and type:
cc hello.c
The program will compile, and then you can run it using.
./a.out
a.out is the name of your compiled program, and it's an executable Unix file.
I think I didn't forget anything, but if you have any other questions, post again and I'll try to help you.