how could computer knows how many arguments will be followed?
we put the arguments in reverse order
because there is sort of printf function
which takes undefined number of arguments.
in case of pritnf, computer could know how many arguments will be followed.
if format string contains "%s, hello, welcome to %s", then just read 2 more arguments.
but how could computer knows when it comes to
such a function which prototype looks like
int func(int a, int b, ...)?
could somebody explain me in assembly level?
thanks
execl()on Unix-likes uses aNULLpointer as the end of arguments, for another example. – geekosaur Mar 30 '11 at 1:29