+ 1
How printf() is able to take variable arguments as per users wish? Explain its complete architecture and use of va_start, va_arg
printf() has been described as a variadic function, but I wanna know that as a programmer how can one design a similar kind of function and use of va_end, va_start and va_arg.
1 Odpowiedź
+ 1
That's an interesting question, which I want to hear the answer to too.
You can always make functions with an array as the argument (containing as many values as you like) and loop through the array though.