9.how do you write a function that takes a variable number
of arguments? What is the prototype of printf () function?
10.How do you access command-line arguments?
11.what does ‘#include<stdio.h>’ mean?
12.what is the difference between #include<> and #include”…”?
13.what are # pragma staments?
14.what is the most appropriate way to write a
multi-statement macro?

Answer Posted / deesha

explained how we can utilize the operator ellipsis (…) to
pass variable number of arguments to a function. I have
utilised there the concept of pointers to access the
variable arguments. The standard C Library provides support
to access these arguments. Use for this support
All you need is to know the last argument before the
ellipsis operator(At least one argument is must to use
variable arguments), let’s call it larg

suppose

fun(type var1,type var2,...)

is a function, then larg corresponds to var2

Now we need to declare the list using va_list
i.e.,

va_list al

now initialize it using va_start

va_start(al,larg);

Now to access each argument, we must know the expected type
of the argument

type var_name = va_arg(al,type);

When we have accessed all the variable arguments, we need to
clean up

va_end(al);

Using standard library, we can easily access the variable
arguments

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1338


Are c and c++ the same?

788


What are identifiers c?

818


Write the Program to reverse a string using pointers.

780


Explain how can I right-justify a string?

791


Why c is known as a mother language?

825


Explain about the constants which help in debugging?

1063


Difference between pass by reference and pass by value?

842


Is this program statement valid? INT = 10.50;

880


What is difference between union and structure in c?

761


How do you search data in a data file using random access method?

1064


Explain what are the __date__ and __time__ preprocessor commands?

837


I have a varargs function which accepts a float parameter?

778


What does *p++ do?

779


What does the c preprocessor do?

829