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 / sumati

9. By using default arguments, we can write a function that
takes a variable number of arguments.

10. By default, 2 arguments are passed to main function..
One is the count that contains number of arguments + 1.
1 is for the program name.

Second argument is the array of arguments...with prgram name
at the first index i.e. [0] and the size of array is count-1.

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what type of questions arrive in interview over c programming?

1756


What are the different types of endless loops?

808


Can the curly brackets { } be used to enclose a single line of code?

920


What are the usage of pointer in c?

889


Explain how can I remove the trailing spaces from a string?

795


What is a #include preprocessor?

801


what do you mean by enumeration constant?

766


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1244


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

885


What does char * * argv mean in c?

794


What header files do I need in order to define the standard library functions I use?

730


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

2002


What are header files in c?

799


int far *near * p; means

3286


code for replace tabs with equivalent number of blanks

1869