Reputation: 16081
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?
Upvotes: 2
Views: 9031
Reputation: 21
Open xcode 6,
Create new project (file menu, new, then project...
Then you'll see a screen "choose a template for your new project"
Choose command line tool.
That's it. You could google creating a command line tool in Xcode, how do I... if you have any further queries.
Upvotes: 2
Reputation: 213846
You probably want Command Line Utility > Standard Tool. This will give you just the ordinary C environment you get on every other OS.
Upvotes: 5
Reputation: 44488
If all you want is to write C code, you want a command line tool application.
Upvotes: 1
Reputation: 14093
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.
Upvotes: 2