Re: How to write function with multiple parameters...??



Bore Biko wrote:
> I don't know hopw to do this,
> like "printf", or "sprintf", I know
> they use a stack but how to make
> my own...??

So you don't mean 'multiple parameters' but 'a variable number of
parameters', I guess. These functions are called 'variadic' and
implemented with va_list and associated macros. Use google to find out
more and don't hesitate to ask here if you encounter problems.

Uli


.