CodeKingPlusPlus
CodeKingPlusPlus

Reputation: 16081

C programming and Xcode

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

Answers (4)

Jon B
Jon B

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

Dietrich Epp
Dietrich Epp

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

Carl
Carl

Reputation: 44488

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

Upvotes: 1

smparkes
smparkes

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

Related Questions