I am currently working on a C project and could not figure out how to pass command line arguments to my main function in Visual Studio 2010 Express Edition. I want to debug - how do these command line arguments work?

link|improve this question
possible duplicate of Debugging with command-line parameters in Visual Studio. – In silico Sep 13 '10 at 0:52
feedback

2 Answers

up vote 32 down vote accepted

Try this:

  • Right click your project in Solution Explorer and select Properties from the menu
  • Go to Configuration Properties -> Debugging
  • Set the Command Arguments in the property list.
link|improve this answer
THANKYOU VERY MUCH !! – Fahad Sep 13 '10 at 0:59
feedback

Under Project->Properties->Debug, you should see a box for Command line arguments (This is in C# 2010, but it should basically be the same place)

link|improve this answer
Thankyou ! I picked the other guy's answer because he was the first one to answer ! – Fahad Sep 13 '10 at 1:00
No problem, I had to create an account before the post would go through =P – Alex Hart Sep 13 '10 at 1:03
feedback

Your Answer

 
or
required, but never shown

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