How to count the no of arguments passed to the function in following program:

#include<stdio.h>
#include<stdarg.h>
void varfun(int i, ...);
int main(){
        varfun(1, 2, 3, 4, 5, 6);
        return 0;
}
void varfun(int n_args, ...){
        va_list ap;
        int i, t;
        va_start(ap, n_args);
        for(i=0;t = va_arg(ap, int);i++){
               printf("%d", t);
        }
        va_end(ap);
}

This program's output over my gcc compiler under ubuntu 10.04:

234561345138032514932134513792

so how to find how many no. of arguments actually passed to the function?

link|improve this question

74% accept rate
your program is working all right on my machine. It prints all the arguments passed to the function – Shweta May 6 '11 at 10:08
feedback

4 Answers

You can't. You have to manage for the caller to indicate the number of arguments somehow. You can:

  • Pass the number of argument in the first variable
  • Require the last variable argument to be null, zero or whatever
  • Make the first argument describe what is expected (eg. the printf format string dictates what arguments should follow)
link|improve this answer
really?? can't i?? :( – codeomnitrix Dec 12 '10 at 12:53
@codeomnitrix: it's sad but true. As a rule of thumb, stay away from variable length arguments. Unless you do C++0x. – Alexandre C. Dec 12 '10 at 16:59
For now, also stay away from C++0x. However the variadic templates in C++0x are really nice. – Matt Joiner Dec 13 '10 at 13:37
@Matt: With variadic templates you can also write type safe variadic functions. – Alexandre C. Dec 13 '10 at 13:51
@Alexandre C.: That's why I mentioned them... – Matt Joiner Dec 13 '10 at 16:47
show 1 more comment
feedback

You can't. Something else has to tell you (for instance for printf, it's implied by the number of % format descriptors in the format string)

link|improve this answer
feedback

You can't. varargs aren't designed to make this possible. You need to implement some other mechanism to tell the function how many arguments there are. One common choice is to pass a sentinel argument at the end of the parameter list, e.g.:

varfun(1, 2, 3, 4, 5, 6, -1);

Another is to pass the count at the beginning:

varfun(6, 1, 2, 3, 4, 5, 6);

This is cleaner, but not as safe, since it's easier to get the count wrong, or forget to update it, than it is to remember and maintain the sentinel at the end.

It's up to you how you do it (consider printf's model, in which the format string determines how many — and what type — of arguments there are).

link|improve this answer
feedback

If you have a C99 compliant compiler (including the preprocessor) you can circumvent this problem by declaring a macro that computes the number of arguments for you. Doing this yourself is a bit tricky, you may use P99_VA_ARGS from the P99 macro package to achieve this.

link|improve this answer
Ok thanks, but much more beyond my c knowledge. I will try to understand this one – codeomnitrix Dec 13 '10 at 6:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.