I need to process 10 values. Which way would be better? Getting them as command line arguments or instead reading from a file? Using C by the way.

link|improve this question

4  
It depends. That is all. – Oli Charlesworth May 20 '11 at 22:36
3  
Why not allow both options? – Chris Morgan May 20 '11 at 22:36
Belongs on UX instead of SO. – WTP'-- May 20 '11 at 22:53
@Radek: Alas, the general rule is no migrations to beta site. 'Course, it has been broken from time to time. – dmckee May 21 '11 at 1:06
@dmckee it cannot be migrated to UX. – WTP'-- May 21 '11 at 8:35
feedback

1 Answer

up vote 4 down vote accepted

If you make them as command-line arguments, then you could do it both ways... i.e.

 a.out 1 2 hello abc ... 

or

a.out \`cat file_with_arguments.txt\
link|improve this answer
+1 for a clever solution! – Chris Frederick May 20 '11 at 22:51
This was a good one. – Swaranga Sarma May 20 '11 at 23: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.