Chris wrote:
> 
> i was wondering how you would make input to be unlimited for a user like if
> they just did  1 2 3 4 5 6 ... only separtated by spaces.  And how would
> you use each value

Command line parameters come into a C program in the argv array.  So you
can already have (theoretically) unlimited parameters.  Just iterate
through argv to read them.
  • input Chris
    • David Rysdam

Reply via email to