I am solving my C assignment in Xcode and in that program i have to give command line arguments when running the program and for this i have to user terminal like this:

./a.out myfirstCommand mySecondCommand

I was wondering if it possible to give these kind of commands within xcode instead of going to terminal. Thanks

link|improve this question

65% accept rate
feedback

2 Answers

up vote 11 down vote accepted

Right click the executable in your Xcode project and pick "Get Info". Then pick the "arguments" tab and you can set arguments to pass when you run or debug your program from inside Xcode.

link|improve this answer
thanks man it was easy. – itsaboutcode Nov 9 '09 at 2:49
feedback

As of Xcode 4.x I've had to go to the Product menu, select "Edit Scheme", then select the arguments tab and add the arguments there.

link|improve this answer
+1 thanks that was hidden pretty deeply – Bogatyr Mar 23 at 6:36
feedback

Your Answer

 
or
required, but never shown

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