I am currently enrolled in a C systems programming course, I want to use Xcode (instead of vi). What type of project do I create when I open Xcode?

Thanks

link|improve this question

I don't have my Mac environment here to look at the specifics, but basically you just create a project for a stand-alone Mac application. – Hot Licks Jan 27 at 0:47
I guess it'd be classified as Mac OS X -> Command line tool? Though I'm wondering why you would want to use XCode. Personally, I prefer the CLI and Makefiles instead of an IDE for C code since I have more control. Having to deal with an IDE is just too annoying (for small projects). – tangrs Jan 27 at 0:47
1  
How is this question not clear? He wants to use C in xCode, how much more programming-related can you get? – Matt Joiner Jan 27 at 0:48
feedback

3 Answers

up vote 3 down vote accepted

You probably want Command Line Utility > Standard Tool. This will give you just the ordinary C environment you get on every other OS.

link|improve this answer
feedback

Mac OS X > Application > Command Line Tool. But I suspect you'd be be better off using vi, emacs, or something like TextMate. I'd guess that most C systems programming courses are going to use Makefiles.

link|improve this answer
feedback

If all you want is to write C code, you want a command line tool application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.