I've had problem when trying write a function which has a default value when no extra arguments are given. I've tried detecting if the only argument given is equal to NULL (as suggested in other answers) but it doesn't seem to be working for me.
The actual implementation of this function takes a struct and adds it to a linked list given in the second argument. If no second argument is given, I want it to add it to a default global linked list which has been previously defined.
Below is a simpler version using int type arguments, but the principle of what I want to do is the same:
/* appropriate headers... */
void test(int a, ... ) {
int b;
va_list args;
va_start(args,a);
b = va_arg(args,int);
if (b == NULL) { // check if no argument is given and set default value
b = 0;
} // if b != NULL then it should be set to the value of the argument
va_end(args);
printf("%d %d\n",a,b);
}
int main() {
test(1);
test(1,1);
return 0;
}
However, this gives the output:
1 *random memory address*
1 1
The output I want should have the first line as
1 0
If I can't use this method then does anyone have any ideas how I can achieve what I want? Thanks in advance.
b(of typeint) toNULLdoesn't make sense; one has an integer value, the other has a pointer value. The compiler will likely let you get away with it becauseNULLis typically defined as a literal 0. That doesn't mean you should useNULLin an integer context. – Keith Thompson Jan 13 at 1:49