Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Techguy172

macrumors 68000
Original poster
I need a C Compiler to use while I learn C, Xcode doesn't work because I cannot compile. Or is there something I need to change?

Preferably Free.

Thanks
 
I need a C Compiler to use while I learn C, Xcode doesn't work because I cannot compile. Or is there something I need to change?

Thanks

Xcode comes with the GCC C compiler. It includes everything you need. If you are having problems you'll need to provide some more information.
 
Yes I know it can Compile C but only if you are doing the whole thing, Interface and all. like say if i just want to write simple programs with text and simple commands. I don't want an interface, just output. I don't know any way of XCode doing this.
 
Create a Standard Tool project in Xcode. Doing so will create a command-line program for you. If you're using Xcode 3, you'll have to choose Run > Console to open Xcode's debugger console and see the output from your program.

You can also run GCC from the command line if you don't want to use Xcode. Launch the Terminal application and navigate to the directory where your source code files are.
 
Yes I know it can Compile C but only if you are doing the whole thing, Interface and all.

Not true. You can either compile on the command line or create a command line based application using the templates provided.

Edit : The post above gives good information on how to do that specifically.
 
Install the Developer Tools as suggested an use gcc, again as suggested. Gcc is a command-line C compiler: you don't need to use XCode at all
 
Create a Standard Tool project in Xcode. Doing so will create a command-line program for you. If you're using Xcode 3, you'll have to choose Run > Console to open Xcode's debugger console and see the output from your program.

You can also run GCC from the command line if you don't want to use Xcode. Launch the Terminal application and navigate to the directory where your source code files are.

Thank You, It works exactly the way I wanted.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.